diff --git a/Makefile b/Makefile index 0c6f6edc7..450fe3d3c 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SHELL := sh -e -#TRANSLATIONS="de" +LANGUAGES = de all: test install @@ -10,7 +10,7 @@ test: # Checking for syntax errors for SCRIPT in live-helper.sh cgi/* functions/* examples/*/*.sh helpers/* hooks/*; \ do \ - sh -n $$SCRIPT; \ + sh -n $${SCRIPT}; \ done # Checking for bashisms @@ -38,25 +38,18 @@ install: cp -r COPYING docs/* $(DESTDIR)/usr/share/doc/live-helper # Installing manpages - for MANPAGE in manpages/*.en.1; \ + for MANPAGE in manpages/en/*; \ do \ - install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man1/$$(basename $$MANPAGE .en.1).1; \ + SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$2 }')"; \ + install -D -m 0644 $${MANPAGE} $(DESTDIR)/usr/share/man/man$${SECTION}/$$(basename $${MANPAGE} .en.$${SECTION}).$${SECTION}; \ done - for MANPAGE in manpages/*.en.7; \ + for LANGUAGE in $(LANGUAGES); \ do \ - install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man7/$$(basename $$MANPAGE .en.7).7; \ - done - - for TRANSLATIONS in $$TRANSLATIONS; \ - do \ - for MANPAGE in manpages/*.$$TRANSLATION.1; \ + for MANPAGE in manpages/$${LANGUAGE}/*; \ do \ - install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/$$(basename $$MANPAGE .$$TRANSLATION.1).1; \ - done; \ - for MANPAGE in manpages/*.$$TRANSLATION.7; \ - do \ - install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/$$(basename $$MANPAGE .$$TRANSLATION.7).7; \ + SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$3 }')"; \ + install -D -m 0644 $${MANPAGE} $(DESTDIR)/usr/share/man/$${LANGUAGE}/man$${SECTION}/$$(basename $${MANPAGE} .$${LANGUAGE}.$${SECTION}).$${SECTION}; \ done; \ done @@ -74,25 +67,18 @@ uninstall: rm -rf $(DESTDIR)/usr/share/doc/live-helper # Uninstalling manpages - for MANPAGE in manpages/*.en.1; \ + for MANPAGE in manpages/en/*; \ do \ - rm -f $(DESTDIR)/usr/share/man/man1/$$(basename $$MANPAGE .en.1).1*; \ + SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$2 }')"; \ + rm -f $(DESTDIR)/usr/share/man/man$${SECTION}/$$(basename $${MANPAGE} .en.$${SECTION}).$${SECTION}; \ done - for MANPAGE in manpages/*.en.7; \ + for LANGUAGE in $(LANGUAGES); \ do \ - rm -f $(DESTDIR)/usr/share/man/man7/$$(basename $$MANPAGE .en.7).7*; \ - done - - for TRANSLATIONS in $$TRANSLATIONS; \ - do \ - for MANPAGE in manpages/*.$$TRANSLATION.1; \ + for MANPAGE in manpages/$${LANGUAGE}/*; \ do \ - rm -f $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/$$(basename $$MANPAGE .$$TRANSLATION.1).1*; \ - done; \ - for MANPAGE in manpages/*.$$TRANSLATION.7; \ - do \ - rm -f $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/$$(basename $$MANPAGE .$$TRANSLATION.7).7*; \ + SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$3 }')"; \ + rm -f $(DESTDIR)/usr/share/man/$${LANGUAGE}/man$${SECTION}/$$(basename $${MANPAGE} .$${LANGUAGE}.$${SECTION}).$${SECTION}; \ done; \ done @@ -101,13 +87,3 @@ clean: distclean: reinstall: uninstall install - -po4a: - # Automatic generation of translated manpages - if [ $$(which po4a) ]; \ - then \ - cd manpages; \ - po4a po4a/live-helper.cfg; \ - else \ - echo "ERROR: skipping po generation - you need to install po4a ."; \ - fi diff --git a/manpages/Makefile b/manpages/Makefile new file mode 100644 index 000000000..2b9fdcc04 --- /dev/null +++ b/manpages/Makefile @@ -0,0 +1,40 @@ +# Makefile + +SHELL := sh -e + +LANGUAGES = $(shell cd po && ls) + +all: build + +po4a.cfg: + echo "[po4a_langs] $(LANGUAGES)" > po4a.cfg + echo "[po4a_paths] pot/\$$master.pot \$$lang:po/\$$lang/\$$master.po" >> po4a.cfg + + for MANPAGE in en/*; \ + do \ + SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$2 }')"; \ + echo "[type: man] $${MANPAGE} \$$lang:\$$lang/$$(basename $${MANPAGE} .$${SECTION}).\$$lang.$${SECTION}" >> po4a.cfg; \ + done + +update: + ./bin/update-version.sh + +build: po4a.cfg + @if [ ! -x "$$(which po4a 2>/dev/null)" ]; \ + then \ + echo "E: po4a - command not found"; \ + echo "I: po4a can be optained from http://po4a.alioth.debian.org/"; \ + echo "I: On Debian systems, po4a can be installed with 'apt-get install po4a'."; \ + exit 1; \ + fi + + po4a --keep 0 --package-name live-helper po4a.cfg + +clean: + rm -f */*.po~ + +distclean: clean + rm -f po4a.cfg + rm -rf $(LANGUAGES) + +rebuild: distclean update build diff --git a/manpages/bin/update-version.sh b/manpages/bin/update-version.sh new file mode 100755 index 000000000..792d1e8a6 --- /dev/null +++ b/manpages/bin/update-version.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +set -e + +. ../functions/common.sh + +echo "Updating version headers..." + +for MANPAGE in en/* +do + SECTION="$(basename ${MANPAGE} | awk -F. '{ print $2 }')" + + sed -i -e "s|^.TH.*$|.TH LIVE\\\-HELPER ${SECTION} $(date +%Y\\\\-%m\\\\-%d) ${CONFIG_VERSION} \"Debian Live Project\"|" ${MANPAGE} +done diff --git a/manpages/de/lh.de.1 b/manpages/de/lh.de.1 new file mode 100644 index 000000000..134a62a52 --- /dev/null +++ b/manpages/de/lh.de.1 @@ -0,0 +1,48 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh\fP \- wrapper for live\-helper programs + +.SH SYNOPSIS +\fBlh\fP COMMAND [COMMAND_OPTIONS] +.PP +\fBlh\fP [\fIlive\-helper\ options\fP] + +.SH DESCRIPTION +\fBlh\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the Debian +Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh\fP has no specific options but understands all generic live\-helper +options. See \fIlive\-helper\fP(7) for a complete list of all generic +live\-helper options. + +.SH FILES +.IP \fBnone\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary.de.1 b/manpages/de/lh_binary.de.1 new file mode 100644 index 000000000..eb4da9807 --- /dev/null +++ b/manpages/de/lh_binary.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP +\fBlh binary\fP calls all necessary live\-helper programs in the correct order +to complete the binary stage. + +.SH OPTIONS +\fBlh binary\fP has no specific options but understands all generic live\-helper +options. See \fIlive\-helper\fP(7) for a complete list of all generic +live\-helper options. + +.SH FILES +.IP \fBnone\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_checksums.de.1 b/manpages/de/lh_binary_checksums.de.1 new file mode 100644 index 000000000..16753b78d --- /dev/null +++ b/manpages/de/lh_binary_checksums.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_checksums\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_checksums\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_checksums\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_checksums\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_chroot.de.1 b/manpages/de/lh_binary_chroot.de.1 new file mode 100644 index 000000000..63029520e --- /dev/null +++ b/manpages/de/lh_binary_chroot.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_chroot\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_chroot\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_chroot\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_chroot\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_debian-installer.de.1 b/manpages/de/lh_binary_debian-installer.de.1 new file mode 100644 index 000000000..3ca8a8797 --- /dev/null +++ b/manpages/de/lh_binary_debian-installer.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_debian\-installer\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_debian\-installer\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_debian\-installer\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_debian\-installer\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_disk.de.1 b/manpages/de/lh_binary_disk.de.1 new file mode 100644 index 000000000..eb1c86cec --- /dev/null +++ b/manpages/de/lh_binary_disk.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_disk\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_disk\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_disk\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_disk\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_encryption.de.1 b/manpages/de/lh_binary_encryption.de.1 new file mode 100644 index 000000000..12b6a047e --- /dev/null +++ b/manpages/de/lh_binary_encryption.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_encryption\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_encryption\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_encryption\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_encryption\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_grub.de.1 b/manpages/de/lh_binary_grub.de.1 new file mode 100644 index 000000000..129b3ff5d --- /dev/null +++ b/manpages/de/lh_binary_grub.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_grub\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_grub\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_grub\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_grub\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_grub2.de.1 b/manpages/de/lh_binary_grub2.de.1 new file mode 100644 index 000000000..428d604fe --- /dev/null +++ b/manpages/de/lh_binary_grub2.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_grub2\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_grub2\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_grub2\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_grub2\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_includes.de.1 b/manpages/de/lh_binary_includes.de.1 new file mode 100644 index 000000000..8ef133f69 --- /dev/null +++ b/manpages/de/lh_binary_includes.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_includes\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_includes\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_includes\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_includes\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_iso.de.1 b/manpages/de/lh_binary_iso.de.1 new file mode 100644 index 000000000..057c984fe --- /dev/null +++ b/manpages/de/lh_binary_iso.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_iso\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_iso\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_iso\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_iso\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_linux-image.de.1 b/manpages/de/lh_binary_linux-image.de.1 new file mode 100644 index 000000000..4b4bc551a --- /dev/null +++ b/manpages/de/lh_binary_linux-image.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_linux\-image\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_linux\-image\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_linux\-image\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_linux\-image\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_local-hooks.de.1 b/manpages/de/lh_binary_local-hooks.de.1 new file mode 100644 index 000000000..cfbc7edf6 --- /dev/null +++ b/manpages/de/lh_binary_local-hooks.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_local\-hooks\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_local\-hooks\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_local\-hooks\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_local\-hooks\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_local-includes.de.1 b/manpages/de/lh_binary_local-includes.de.1 new file mode 100644 index 000000000..5d44dcbde --- /dev/null +++ b/manpages/de/lh_binary_local-includes.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_local\-includes\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_local\-includes\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_local\-includes\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_local\-includes\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_local-packageslists.de.1 b/manpages/de/lh_binary_local-packageslists.de.1 new file mode 100644 index 000000000..815c58a2a --- /dev/null +++ b/manpages/de/lh_binary_local-packageslists.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_local\-packageslists\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_local\-packageslists\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_local\-packageslists\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_local\-packageslists\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_manifest.de.1 b/manpages/de/lh_binary_manifest.de.1 new file mode 100644 index 000000000..6a9b200d0 --- /dev/null +++ b/manpages/de/lh_binary_manifest.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_manifest\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_manifest\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_manifest\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_manifest\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_memtest.de.1 b/manpages/de/lh_binary_memtest.de.1 new file mode 100644 index 000000000..0404d5908 --- /dev/null +++ b/manpages/de/lh_binary_memtest.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_memtest\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_memtest\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_memtest\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_memtest\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_net.de.1 b/manpages/de/lh_binary_net.de.1 new file mode 100644 index 000000000..c715daab2 --- /dev/null +++ b/manpages/de/lh_binary_net.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_net\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_net\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_net\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_net\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_rootfs.de.1 b/manpages/de/lh_binary_rootfs.de.1 new file mode 100644 index 000000000..4114ec688 --- /dev/null +++ b/manpages/de/lh_binary_rootfs.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_rootfs\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_rootfs\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_rootfs\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_rootfs\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_silo.de.1 b/manpages/de/lh_binary_silo.de.1 new file mode 100644 index 000000000..3428c36c8 --- /dev/null +++ b/manpages/de/lh_binary_silo.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_silo\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_silo\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_silo\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_silo\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_syslinux.de.1 b/manpages/de/lh_binary_syslinux.de.1 new file mode 100644 index 000000000..3e742f3bb --- /dev/null +++ b/manpages/de/lh_binary_syslinux.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_syslinux\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_syslinux\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_syslinux\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_syslinux\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_tar.de.1 b/manpages/de/lh_binary_tar.de.1 new file mode 100644 index 000000000..4ac02c316 --- /dev/null +++ b/manpages/de/lh_binary_tar.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_tar\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_tar\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_tar\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_tar\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_usb.de.1 b/manpages/de/lh_binary_usb.de.1 new file mode 100644 index 000000000..05dfdc25e --- /dev/null +++ b/manpages/de/lh_binary_usb.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_usb\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_usb\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_usb\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_usb\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_virtual-hdd.de.1 b/manpages/de/lh_binary_virtual-hdd.de.1 new file mode 100644 index 000000000..16e7e9d72 --- /dev/null +++ b/manpages/de/lh_binary_virtual-hdd.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_virtual\-hdd\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_virtual\-hdd\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_virtual\-hdd\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_virtual\-hdd\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_win32-loader.de.1 b/manpages/de/lh_binary_win32-loader.de.1 new file mode 100644 index 000000000..16dc7f909 --- /dev/null +++ b/manpages/de/lh_binary_win32-loader.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_win32\-loader\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_win32\-loader\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_win32\-loader\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_win32\-loader\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_binary_yaboot.de.1 b/manpages/de/lh_binary_yaboot.de.1 new file mode 100644 index 000000000..776351754 --- /dev/null +++ b/manpages/de/lh_binary_yaboot.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_yaboot\fP \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_yaboot\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh binary_yaboot\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh binary_yaboot\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_bootstrap.de.1 b/manpages/de/lh_bootstrap.de.1 new file mode 100644 index 000000000..45dd6aa36 --- /dev/null +++ b/manpages/de/lh_bootstrap.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh bootstrap \fP \- Complete the bootstrap stage + +.SH SYNOPSIS +\fBlh bootstrap\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh bootstrap\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP +\fBlh bootstrap\fP calls all necessary live\-helper programs in the correct +order to complete the bootstrap stage. + +.SH OPTIONS +\fBlh bootstrap\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.IP \fBnone\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_bootstrap_cache.de.1 b/manpages/de/lh_bootstrap_cache.de.1 new file mode 100644 index 000000000..f89f3474f --- /dev/null +++ b/manpages/de/lh_bootstrap_cache.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh bootstrap_cache\fP \- Complete the bootstrap stage + +.SH SYNOPSIS +\fBlh bootstrap_cache\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh bootstrap_cache\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh bootstrap_cache\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_bootstrap_cdebootstrap.de.1 b/manpages/de/lh_bootstrap_cdebootstrap.de.1 new file mode 100644 index 000000000..7813da454 --- /dev/null +++ b/manpages/de/lh_bootstrap_cdebootstrap.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh bootstrap_cdebootstrap\fP \- Complete the bootstrap stage + +.SH SYNOPSIS +\fBlh bootstrap_cdebootstrap\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh bootstrap_cdebootstrap\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh bootstrap_cdebootstrap\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_bootstrap_copy.de.1 b/manpages/de/lh_bootstrap_copy.de.1 new file mode 100644 index 000000000..8d08533ca --- /dev/null +++ b/manpages/de/lh_bootstrap_copy.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh bootstrap_copy\fP \- Complete the bootstrap stage + +.SH SYNOPSIS +\fBlh bootstrap_copy\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh bootstrap_copy\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh bootstrap_copy\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_bootstrap_debootstrap.de.1 b/manpages/de/lh_bootstrap_debootstrap.de.1 new file mode 100644 index 000000000..51482ee36 --- /dev/null +++ b/manpages/de/lh_bootstrap_debootstrap.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh bootstrap_debootstrap\fP \- Complete the bootstrap stage + +.SH SYNOPSIS +\fBlh bootstrap_debootstrap\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh bootstrap_debootstrap\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh bootstrap_debootstrap\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_build.de.1 b/manpages/de/lh_build.de.1 new file mode 100644 index 000000000..1b8ec9e9e --- /dev/null +++ b/manpages/de/lh_build.de.1 @@ -0,0 +1,49 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh build\fP \- Complete the bootstrap, chroot, binary, and source stages + +.SH SYNOPSIS +\fBlh build\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh build\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP +\fBlh build\fP calls all necessary live\-helper programs in the correct order to +complete the bootstrap, chroot, binary, and source stages. + +.SH OPTIONS +\fBlh build\fP has no specific options but understands all generic live\-helper +options. See \fIlive\-helper\fP(7) for a complete list of all generic +live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBauto/config\fP 4 + +.\" FIXME +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot.de.1 b/manpages/de/lh_chroot.de.1 new file mode 100644 index 000000000..6d5c058c8 --- /dev/null +++ b/manpages/de/lh_chroot.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP +\fBlh chroot\fP calls all necessary live\-helper programs in the correct order +to complete the chroot stage. + +.SH OPTIONS +\fBlh chroot\fP has no specific options but understands all generic live\-helper +options. See \fIlive\-helper\fP(7) for a complete list of all generic +live\-helper options. + +.SH FILES +.IP \fBnone\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_apt.de.1 b/manpages/de/lh_chroot_apt.de.1 new file mode 100644 index 000000000..1e2c5c3e0 --- /dev/null +++ b/manpages/de/lh_chroot_apt.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_apt\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_apt\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_apt\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_apt\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_cache.de.1 b/manpages/de/lh_chroot_cache.de.1 new file mode 100644 index 000000000..c03528399 --- /dev/null +++ b/manpages/de/lh_chroot_cache.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_cache\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_cache\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_cache\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_cache\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_debianchroot.de.1 b/manpages/de/lh_chroot_debianchroot.de.1 new file mode 100644 index 000000000..8d4b5bb7e --- /dev/null +++ b/manpages/de/lh_chroot_debianchroot.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_debianchroot\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_debianchroot\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_debianchroot\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_debianchroot\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_devpts.de.1 b/manpages/de/lh_chroot_devpts.de.1 new file mode 100644 index 000000000..16b4b1c97 --- /dev/null +++ b/manpages/de/lh_chroot_devpts.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_devpts\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_devpts\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_devpts\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_devpts\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_dpkg.de.1 b/manpages/de/lh_chroot_dpkg.de.1 new file mode 100644 index 000000000..8a60c30f9 --- /dev/null +++ b/manpages/de/lh_chroot_dpkg.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_dpkg\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_dpkg\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_dpkg\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_dpkg\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_hacks.de.1 b/manpages/de/lh_chroot_hacks.de.1 new file mode 100644 index 000000000..561f4d9a3 --- /dev/null +++ b/manpages/de/lh_chroot_hacks.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_hacks\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_hacks\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_hacks\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_hacks\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_hooks.de.1 b/manpages/de/lh_chroot_hooks.de.1 new file mode 100644 index 000000000..b76df0673 --- /dev/null +++ b/manpages/de/lh_chroot_hooks.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_hooks\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_hooks\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_hooks\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_hooks\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_hostname.de.1 b/manpages/de/lh_chroot_hostname.de.1 new file mode 100644 index 000000000..f6d8327ff --- /dev/null +++ b/manpages/de/lh_chroot_hostname.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_hostname\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_hostname\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_hostname\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_hostname\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_hosts.de.1 b/manpages/de/lh_chroot_hosts.de.1 new file mode 100644 index 000000000..ce188c695 --- /dev/null +++ b/manpages/de/lh_chroot_hosts.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_hosts\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_hosts\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_hosts\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_hosts\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_install-packages.de.1 b/manpages/de/lh_chroot_install-packages.de.1 new file mode 100644 index 000000000..f9a00fd06 --- /dev/null +++ b/manpages/de/lh_chroot_install-packages.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_install\-packages\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_install\-packages\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_install\-packages\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_install\-packages\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_interactive.de.1 b/manpages/de/lh_chroot_interactive.de.1 new file mode 100644 index 000000000..3a6d5fc05 --- /dev/null +++ b/manpages/de/lh_chroot_interactive.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_interactive\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_interactive\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_interactive\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_interactive\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_linux-image.de.1 b/manpages/de/lh_chroot_linux-image.de.1 new file mode 100644 index 000000000..f9b203fa4 --- /dev/null +++ b/manpages/de/lh_chroot_linux-image.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_linux\-image\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_linux\-image\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_linux\-image\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_linux\-image\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_local-hooks.de.1 b/manpages/de/lh_chroot_local-hooks.de.1 new file mode 100644 index 000000000..f35a054ce --- /dev/null +++ b/manpages/de/lh_chroot_local-hooks.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-hooks\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-hooks\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_local\-hooks\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_local\-hooks\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_local-includes.de.1 b/manpages/de/lh_chroot_local-includes.de.1 new file mode 100644 index 000000000..ba64a3982 --- /dev/null +++ b/manpages/de/lh_chroot_local-includes.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-includes\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-includes\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_local\-includes\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_local\-includes\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_local-packages.de.1 b/manpages/de/lh_chroot_local-packages.de.1 new file mode 100644 index 000000000..dbd7fa8d1 --- /dev/null +++ b/manpages/de/lh_chroot_local-packages.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-packages\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-packages\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_local\-packages\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_local\-packages\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_local-packageslists.de.1 b/manpages/de/lh_chroot_local-packageslists.de.1 new file mode 100644 index 000000000..161b66a2c --- /dev/null +++ b/manpages/de/lh_chroot_local-packageslists.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-packageslists\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-packageslists\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_local\-packageslists\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_local\-packageslists\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_local-patches.de.1 b/manpages/de/lh_chroot_local-patches.de.1 new file mode 100644 index 000000000..f2301e0d8 --- /dev/null +++ b/manpages/de/lh_chroot_local-patches.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-patches\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-patches\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_local\-patches\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_local\-patches\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_local-preseed.de.1 b/manpages/de/lh_chroot_local-preseed.de.1 new file mode 100644 index 000000000..c0aa56f7f --- /dev/null +++ b/manpages/de/lh_chroot_local-preseed.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-preseed\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-preseed\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_local\-preseed\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_local\-preseed\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_localization.de.1 b/manpages/de/lh_chroot_localization.de.1 new file mode 100644 index 000000000..eaeda0651 --- /dev/null +++ b/manpages/de/lh_chroot_localization.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_localization\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_localization\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_localization\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_localization\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_packages.de.1 b/manpages/de/lh_chroot_packages.de.1 new file mode 100644 index 000000000..007a80c62 --- /dev/null +++ b/manpages/de/lh_chroot_packages.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_packages\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_packages\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_packages\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_packages\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_packageslists.de.1 b/manpages/de/lh_chroot_packageslists.de.1 new file mode 100644 index 000000000..0aec4edd5 --- /dev/null +++ b/manpages/de/lh_chroot_packageslists.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_packageslists\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_packageslists\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_packageslists\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_packageslists\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_preseed.de.1 b/manpages/de/lh_chroot_preseed.de.1 new file mode 100644 index 000000000..f8485cde4 --- /dev/null +++ b/manpages/de/lh_chroot_preseed.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_preseed\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_preseed\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_preseed\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_preseed\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_proc.de.1 b/manpages/de/lh_chroot_proc.de.1 new file mode 100644 index 000000000..427da6832 --- /dev/null +++ b/manpages/de/lh_chroot_proc.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_proc\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_proc\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_proc\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_proc\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_resolv.de.1 b/manpages/de/lh_chroot_resolv.de.1 new file mode 100644 index 000000000..9833a96fe --- /dev/null +++ b/manpages/de/lh_chroot_resolv.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_resolv\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_resolv\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_resolv\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_resolv\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_selinuxfs.de.1 b/manpages/de/lh_chroot_selinuxfs.de.1 new file mode 100644 index 000000000..863b31e4c --- /dev/null +++ b/manpages/de/lh_chroot_selinuxfs.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_selinuxfs\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_selinuxfs\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_selinuxfs\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_selinuxfs\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_sources.de.1 b/manpages/de/lh_chroot_sources.de.1 new file mode 100644 index 000000000..410b2f814 --- /dev/null +++ b/manpages/de/lh_chroot_sources.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_sources\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_sources\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_sources\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_sources\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_symlinks.de.1 b/manpages/de/lh_chroot_symlinks.de.1 new file mode 100644 index 000000000..deb020ee5 --- /dev/null +++ b/manpages/de/lh_chroot_symlinks.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_symlinks\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_symlinks\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_symlinks\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_symlinks\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_sysfs.de.1 b/manpages/de/lh_chroot_sysfs.de.1 new file mode 100644 index 000000000..ad7783089 --- /dev/null +++ b/manpages/de/lh_chroot_sysfs.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_sysfs\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_sysfs\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_sysfs\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_sysfs\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_sysv-rc.de.1 b/manpages/de/lh_chroot_sysv-rc.de.1 new file mode 100644 index 000000000..a694db439 --- /dev/null +++ b/manpages/de/lh_chroot_sysv-rc.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_sysv\-rc\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_sysv\-rc\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_sysv\-rc\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_sysv\-rc\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_sysvinit.de.1 b/manpages/de/lh_chroot_sysvinit.de.1 new file mode 100644 index 000000000..501914c7e --- /dev/null +++ b/manpages/de/lh_chroot_sysvinit.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_sysvinit\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_sysvinit\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_sysvinit\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_sysvinit\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_tasks.de.1 b/manpages/de/lh_chroot_tasks.de.1 new file mode 100644 index 000000000..0904d3bc4 --- /dev/null +++ b/manpages/de/lh_chroot_tasks.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_tasks\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_tasks\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_tasks\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_tasks\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_chroot_upstart.de.1 b/manpages/de/lh_chroot_upstart.de.1 new file mode 100644 index 000000000..4e002ac62 --- /dev/null +++ b/manpages/de/lh_chroot_upstart.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_upstart\fP \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_upstart\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh chroot_upstart\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh chroot_upstart\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_clean.de.1 b/manpages/de/lh_clean.de.1 new file mode 100644 index 000000000..546da435b --- /dev/null +++ b/manpages/de/lh_clean.de.1 @@ -0,0 +1,73 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh clean\fP \- Clean build directory + +.SH SYNOPSIS +\fBlh clean\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh clean\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP +.\" FIXME +.\" FIXME +\fBlh clean\fP is responsible for cleaning up after a system is built. It +removes the build directories, and removes some other files including stage +files, and any detritus left behind by other live\-helper commands. + +.SH OPTIONS +In addition to its specific options \fBlh clean\fP understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. +.PP +.\" FIXME +.IP \fB\-\-all\fP 4 +removes chroot, binary, stage, and source. The cache directory is kept. This +is the default operation and will be performed if no argument is given. +.IP \fB\-\-cache\fP 4 +removes the cache directories. +.IP \fB\-\-chroot\fP 4 +unmounts and removes the chroot directory. +.IP \fB\-\-binary\fP 4 +removes all binary related caches, files, directories, and stages files. +.IP \fB\-\-purge\fP 4 +removes everything, including all caches. The config directory is kept. +.IP \fB\-\-remove\fP 4 +removes everything, including package cache but not stage cache. The config +directory is kept. +.IP \fB\-\-stage\fP 4 +removes all stage files. +.IP \fB\-\-source\fP 4 +.\" FIXME +removes all source related caches, files, directories, and stage files. + +.SH FILES +.\" FIXME +.IP \fBauto/clean\fP 4 + +.\" FIXME +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_config.de.1 b/manpages/de/lh_config.de.1 new file mode 100644 index 000000000..b608507fc --- /dev/null +++ b/manpages/de/lh_config.de.1 @@ -0,0 +1,719 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh config\fP \- Create config directory + +.SH SYNOPSIS +\fBlh config\fP [\fIlive\-helper options\fP] +.PP +.\" FIXME +\fBlh config\fP +.br +\fB [\-\-apt\fP apt|aptitude] +.br + [\fB\-\-apt\-ftp\-proxy\fP \fIURL\fP] +.br + [\fB\-\-apt\-http\-proxy\fP \fIURL\fP] +.br + [\fB\-\-apt\-pdiffs\fP true|false] +.br + [\fB\-\-apt\-options\fP \fIOPTION\fP|"\fIOPTIONS\fP"] +.br + [\fB\-\-aptitude\-options\fP \fIOPTION\fP|"\fIOPTIONS\fP"] +.br + [\fB\-\-apt\-pipeline\fP \fIDEPTH\fP] +.br + [\fB\-\-apt\-recommends\fP true|false] +.br + [\fB\-\-apt\-secure\fP true|false] +.br + [\-a|\fB\-\-architecture\fP \fIARCHITECTURE\fP] +.br + [\-b|\fB\-\-binary\-images\fP iso|iso\-hybrid|net|tar|usb\-hdd] +.br + [\fB\-\-binary\-filesystem\fP fat16|fat32|ext2] +.br + [\fB\-\-binary\-indices\fP true|false|none] +.br + [\fB\-\-bootappend\-install\fP \fIPARAMETER\fP|\fI"PARAMETERS"\fP] +.br + [\fB\-\-bootappend\-live\fP \fIPARAMETER\fP|\fI"PARAMETERS"\fP] +.br + [\fB\-\-bootloader\fP grub|syslinux|yaboot] +.br + [\fB\-\-bootstrap\fP cdebootstrap|cdebootstrap\-static|debootstrap|copy] +.br + [\fB\-\-bootstrap\-config\fP \fIFILE\fP] +.br + [\-f|\fB\-\-bootstrap\-flavour\fP minimal|standard] +.br + [\fB\-\-bootstrap\-keyring\fP \fIPACKAGE\fP] +.br + [\fB\-\-cache\fP true|false] +.br + [\fB\-\-cache\-indices\fP true|false] +.br + [\fB\-\-cache\-packages\fP true|false] +.br + [\fB\-\-cache\-stages\fP \fISTAGE\fP|\fI"STAGES"\fP] +.br + [\fB\-\-checksums\fP md5|sha1|sha256|none] +.br + [\fB\-\-chroot\-build\fP true|false] +.br + [\fB\-\-chroot\-filesystem\fP ext2|ext3|squashfs|plain|jffs2] +.br + [\fB\-\-clean]\fP +.br +\fB [\-c|\-\-conffile\fP \fIFILE\fP] +.br + [\fB\-\-debconf\-frontend\fP dialog|editor|noninteractive|readline] +.br + [\fB\-\-debconf\-nowarnings\fP true|false] +.br + [\fB\-\-debconf\-priority\fP low|medium|high|critical] +.br + [\fB\-\-debian\-installer\fP true|cdrom|netinst|netboot|businesscard|live|false] +.br + [\fB\-\-debian\-installer\-distribution\fP daily|\fICODENAME\fP] +.br + [\fB\-\-debian\-installer\-preseedfile\fP \fIFILE\fP|\fIURL\fP] +.br + [\fB\-\-debian\-installer\-gui\fP true|false] +.br + [\-d|\fB\-\-distribution\fP \fICODENAME\fP] +.br + [\-\-\fBdump\fP] +.br + [\-e|\fB\-\-encryption\fP false|aes128|aes192|aes256] +.br + [\fB\-\-fdisk\fP fdisk|fdisk.dist] +.br + [\fB\-\-grub\-splash\fP \fIFILE\fP] +.br + [\fB\-\-gzip\-options\fP \fIOPTION\fP|"\fIOPTIONS\fP"] +.br + [\fB\-\-hooks\fP \fIFILE\fP] +.br + [\fB\-\-hostname\fP \fINAME\fP] +.br + [\fB\-\-ignore\-system\-defaults\fP] +.br + [\fB\-\-includes\fP \fIPATH\fP] +.br + [\fB\-\-initramfs\fP auto|live\-initramfs|casper] +.br + [\fB\-\-interactive\fP shell] +.br + [\fB\-\-iso\-application\fP \fINAME\fP] +.br + [\fB\-\-iso\-preparer\fP \fINAME\fP] +.br + [\fB\-\-iso\-publisher\fP \fINAME\fP] +.br + [\fB\-\-iso\-volume\fP \fINAME\fP] +.br + [\fB\-\-jffs2\-eraseblock\fP \fISIZE\fP] +.br + [\fB\-\-keyring\-packages\fP \fIPACKAGE|"PACKAGES"\fP] +.br + [\-l|\fB\-\-language\fP \fILANGUAGE\fP] +.br + [\-k|\fB\-\-linux\-flavours\fP \fIFLAVOUR\fP|\fI"FLAVOURS"\fP] +.br + [\fB\-\-linux\-packages\fP \fI"PACKAGES"\fP] +.br + [\fB\-\-losetup\fP losetup|losetup.orig] +.br + [\fB\-\-memtest\fP memtest86+|memtest86|none] +.br + [\-m|\fB\-\-mirror\-bootstrap\fP \fIURL\fP] +.br + [\fB\-\-mirror\-binary\fP \fIURL\fP] +.br + [\fB\-\-mirror\-binary\-security\fP \fIURL\fP] +.br + [\fB\-\-mirror\-chroot\fP \fIURL\fP] +.br + [\fB\-\-mirror\-chroot\-security\fP \fIURL\fP] +.br + [\fB\-\-mirror\-debian\-installer\fP \fIURL\fP] +.br + [\fB\-\-mode\fP debian|emdebian|ubuntu] +.br + [\fB\-\-net\-root\-filesystem\fP nfs|cfs] +.br + [\fB\-\-net\-root\-mountoptions\fP \fIOPTIONS\fP] +.br + [\fB\-\-net\-root\-path\fP \fIPATH\fP] +.br + [\fB\-\-net\-root\-server\fP \fIIP\fP|\fIHOSTNAME\fP] +.br + [\fB\-\-net\-cow\-filesystem\fP nfs|cfs] +.br + [\fB\-\-net\-cow\-mountoptions\fP \fIOPTIONS\fP] +.br + [\fB\-\-net\-cow\-path\fP \fIPATH\fP] +.br + [\fB\-\-net\-cow\-server\fP \fIIP\fP|\fIHOSTNAME\fP] +.br + [\fB\-\-net\-tarball\fP bzip2|gzip|tar|none] +.br + [\-p|\fB\-\-packages\-lists\fP \fILIST\fP|\fI"LISTS"\fP] +.br + [\fB\-\-packages\fP \fIPACKAGE\fP|\fI"PACKAGES"\fP] +.br + [\fB\-r, \-\-repositories \fP\fIREPOSITORY\fP|\fI"REPOSITORIES"\fP] +.br + [\fB\-\-root\-command\fP sudo] +.br + [\fB\-\-use\-fakeroot\fP true|false] +.br + [\fB\-\-archive\-areas\fP \fIARCHIVE_AREA\fP|\fI"ARCHIVE_AREAS"\fP] +.br + [\fB\-\-security\fP true|false] +.br + [\fB\-\-source\fP true|false] +.br + [\-s|\fB\-\-source\-images\fP iso|net|tar|usb\-hdd] +.br + [\fB\-\-symlinks\fP true|false] +.br + [\fB\-\-syslinux\-splash\fP \fIFILE\fP] +.br + [\fB\-\-syslinux\-timeout\fP \fISECONDS\fP] +.br + [\fB\-\-syslinux\-menu\fP true|false] +.br + [\fB\-\-sysvinit\fP true|false] +.br + [\fB\-\-tasksel\fP aptitude|tasksel] +.br + [\fB\-\-tasks\fP \fITASK\fP|"\fITASKS\fP"] +.br + [\fB\-\-templates\fP \fIPATH\fP] +.br + [\fB\-\-virtual\-root\-filesystem\fP ext3] +.br + [\fB\-\-virtual\-root\-size \fP\fIMB\fP] +.br + [\fB\-\-exposed\-root\fP true|false] +.br + [\fB\-\-username\fP \fINAME\fP] +.br +.\" FIXME + [\fB\-\-win32\-loader true|false]\fP + +.SH DESCRIPTION +\fBlh config\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP +.\" FIXME +\fBlh config\fP populates the configuration directory for live\-helper. By +default, this directory is named 'config' and is created in the current +directory where \fBlh config\fP was executed. +.PP +.\" FIXME +Note: Currently \fBlh config\fP tries to be smart and sets defaults for some +options depending on the setting of other options (e.g. which linux packages +to be used depending on if a lenny system gets build or not). This means +that when generating a new configuration, you should call \fBlh config\fP only +once with all options specified. Calling it several times with only a subset +of the options each can result in non working configurations. This is also +caused by the fact that \fBlh config\fP called with one option only changes +that option, and leaves everything else as is unless its not +defined. However, \fBlh config\fP does warn about know impossible or likely +impossible combinations that would lead to non working live systems. If +unsure, remove config/{binary,bootstrap,chroot,common,source} and call \fBlh +config\fP again. + +.SH OPTIONS +In addition to its specific options \fBlh config\fP understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. +.PP +.\" FIXME +.IP "\fB\-\-apt\fP apt|aptitude" 4 +defines if apt\-get or aptitude is used to install packages when building the +image. When building etch images, this defaults to aptitude. Every other +distribution defaults to apt. +.IP "\fB\-\-apt\-ftp\-proxy\fP \fIURL\fP" 4 +sets the ftp proxy to be used by apt. By default, this is empty but if the +host has the environment variable ftp_proxy set, apt\-ftp\-proxy gets +automatically set to the value of ftp_proxy. +.IP "\fB\-\-apt\-http\-proxy\fP \fIURL\fP" 4 +sets the http proxy to be used by apt. By default, this is empty but if the +host has the environment variable http_proxy set, apt\-http\-proxy gets +automatically set to the value of http_proxy. +.IP "\fB\-\-apt\-pdiffs\fP true|false" 4 +defines whetever apt should use incremental package indices feature or +not. This is true by default. +.IP "\fB\-\-apt\-options\fP \fIOPTION\fP|\(dq\fIOPTIONS\fP\(dq" 4 +defines the default options that will be appended to every apt call that is +made inside chroot during the building of the image. By default, this is set +to \-\-yes to allow non\-interactive installation of packages. +.IP "\fB\-\-aptitude\-options\fP \fIOPTION\fP|\(dq\fIOPTIONS\fP\(dq" 4 +defines the default options that will be appended to every aptitude call +that is made inside chroot during building of the image. By default, this is +set to \-\-assume\-yes to allow non\-interactive installation of packages. +.IP "\fB\-\-apt\-pipeline\fP \fIDEPTH\fP" 4 +sets the depth of the apt/aptitude pipeline. In cases where the remote +server is not RFC conforming or buggy (such as Squid 2.0.2) this option can +be a value from 0 to 5 indicating how many outstanding requests APT should +send. A value of zero MUST be specified if the remote host does not properly +linger on TCP connections \- otherwise data corruption will occur. Hosts +which require this are in violation of RFC 2068. By default, live\-helper +does not set this option. +.IP "\fB\-\-apt\-recommends\fP true|false" 4 +defines if apt should install recommended packages automatically. By +default, this is true except in emdebian mode. +.IP "\fB\-\-apt\-secure\fP true|false" 4 +defines if apt should check repository signatures. This is true by default. +.IP "\-a|\fB\-\-architecture\fP \fIARCHITECTURE\fP" 4 +defines the architecture of the to be build image. By default, this is set +to the host architecture. Note that you cannot crossbuild for another +architecture if your host system is not able to execute binaries for the +target architecture natively. For example, building amd64 images on i386 and +vice versa is possile if you have a 64bit capable i386 processor and the +right kernel. But building powerpc images on an i386 system is not possible. +.IP "\-b|\fB\-\-binary\-images\fP iso|iso\-hybrid|net|tar|usb\-hdd" 4 +defines the image type to build. By default this is set to iso to build +CD/DVD images, for squeeze and newer it defaults to iso\-hybrid. +.IP "\fB\-\-binary\-filesystem\fP fat16|fat32|ext2" 4 +defines the filesystem to be used in the image type. This only has an effect +if the selected binary image type does allow to choose a filesystem. For +example, when selection iso the resulting CD/DVD has always the filesystem +ISO9660. When building usb\-hdd images for usb sticks, this is active. Note +that it defaults to fat16 on all architectures except sparc where it +defaults to ext2. Also note that if you choose fat16 and your resulting +binary image gets bigger than 2GB, the binary filesystem automatically gets +switched to fat32. +.IP "\fB\-\-binary\-indices\fP true|false|none" 4 +defines if the resulting images should have binary indices or not and +defaults to true. If set to none, no indices are included at all. +.IP "\fB\-\-bootappend\-install\fP \fIPARAMETER\fP|\(dq\fIPARAMETERS\fP\(dq" 4 +sets boot parameters specific to debian\-installer, if included. +.IP "\fB\-\-bootappend\-live\fP \fIPARAMETER\fP|\(dq\fIPARAMETERS\fP\(dq" 4 +sets boot parameters specific to debian\-live. A complete list of boot +parameters can be found, for etch, in the manpage of casper, for all other +distributions in the manpage of live\-initramfs. On the images, a list of all +parameters (without comments) is included in the /parameters.txt. +.IP "\fB\-\-bootloader\fP grub|syslinux|yaboot" 4 +defines which bootloader is beeing used in the generated image. This has +only an effect if the selected binary image type does allow to choose the +bootloader. For example, if you build a iso, always syslinux (or more +precise, isolinux) is being used. Also note that some combinations of binary +images types and bootloaders may be possible but live\-helper does not +support them yet. \fBlh config\fP will fail to create such a not yet supported +configuration and give a explanation about it. For usb\-hdd images on amd64 +and i386, the default is syslinux. yaboot is only used on powerpc. +.IP "\fB\-\-bootstrap\fP cdebootstrap|cdebootstrap\-static|debootstrap|copy" 4 +defines which program is used to bootstrap the debian chroot, default is +debootstrap. Note that if you set the bootstrap program to copy, then your +host system is copied. This can be useful if you want to convert/clone your +existing host system into a live system, however, make sure you do have +enough free space as this can, depending on your host system, get quite big. +.IP "\fB\-\-bootstrap\-config\fP \fIFILE\fP" 4 +sets a custom configuration file for the boostrap programm of choice and is +empty by default. Refere to the documentation of debootstrap or cdebootstrap +for more information about that. When the bootstrap program is set to copy, +this has no effect. +.IP "\-f|\fB\-\-bootstrap\-flavour\fP minimal|standard" 4 +defines if the bootstrap program should bootstrap the standard system (all +packages of priority required and important, which is the default) or a +minimal system (only packages of priority required, plus apt). +.IP "\fB\-\-bootstrap\-keyring\fP \fIPACKAGE\fP" 4 +sets the archive keyring package to be used. Default is +debian\-archive\-keyring. +.IP "\fB\-\-cache\fP true|false" 4 +defines globally if any cache should be used at all. Different caches can be +controled through the their own options. +.IP "\fB\-\-cache\-indices\fP true|false" 4 +defines if downloaded package indices and lists should be cached which is +false by default. Enabling it would allow to rebuild an image completely +offline, however, you would not get updates anymore then. +.IP "\fB\-\-cache\-packages\fP true|false" 4 +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\fP true|false|\fISTAGE\fP|\(dq\fISTAGES\fP\(dq" 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\fP md5|sha1|sha256|none" 4 +defines if the binary image should contain a file called md5sums.txt, +sha1sums.txt and/or sha256sums.txt. These lists all files on the image +together with their checksums. This in turn can be used by live\-initramfs' +built\-in integrity\-check to verify the medium if specified at boot +prompt. In general, this should not be false and is an important feature of +live system released to the public. However, during development of very big +images it can save some time by not calculating the checksums. +.IP "\fB\-\-chroot\-build\fP true|false" 4 +defines whetever live\-helper should use the tools from within the chroot to +build the binary image or not by using and including the host systems +tools. This is a very dangerous option, using the tools of the host system +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\fP match what is present at +build\-time in the target distribution. Never do disable this option unless +you are \fBexactely\fP sure what you are doing and have \fBcompletely\fP\fI +understood its consequences.\fP +.IP "\fB\-\-chroot\-filesystem\fP ext2|ext3|squashfs|plain|jffs2" 4 +defines which filesystem type should be used for the root filesystem +image. If you use plain, then no filesystem image is created and the root +filesystem content is copied on the binary image filesystem as flat +files. Depending on what binary filesystem you have choosen, it may not be +possible to build with a plain root filesystem, e.g. fat16/fat32 and plain +don't work as linux does not support to run on them. +.IP \fB\-\-clean\fP 4 +minimizes config directory by automatically removing unused and thus empty +subdirectories. +.IP "\-c|\fB\-\-conffile\fP \fIFILE\fP" 4 +using a user specified alternative configuration file in addition to the +normally used one in the config directory. +.IP "\fB\-\-debconf\-frontend\fP dialog|editor|noninteractive|readline" 4 +defines what value the debconf frontend should be set to inside the +chroot. Note that setting it to anything by noninteractive, which is the +default, makes your build asking questions during the build. +.IP "\fB\-\-debconf\-nowarnings\fP true|false" 4 +defines if warnings of debconf should be displayed or not. Warnings from +debconf are generally very rare and by default, we skipp them, if any, in +order to keep the build process entirely non interactive. +.IP "\fB\-\-debconf\-priority\fP low|medium|high|critical" 4 +defines what value the debconf priority shoul dbe set to inside the +chroot. By default, it is set to critical, which means that almost no +questions are displayed. Note that this only has an effect if you use any +debconf frontend different from noninteractive. +.IP "\fB\-\-debian\-installer\fP true|cdrom|netinst|netboot|businesscard|live|false" 4 +defines which type, if any, of the debian\-installer should be included in +the resulting binary image. By default, no installer is included. All +available flavours except live are the identical configurations used on the +installer media produced by regular debian\-cd. When live is choosen, the +live\-installer udeb is included so that debian\-installer will behave +different than usual \- instead of installing the debian system from packages +from the medium or the network, it installs the live system to the disk. +.IP "\fB\-\-debian\-installer\-distribution\fP daily|\fICODENAME\fP" 4 +defines the distribution where the debian\-installer files should be taken +out from. Normally, this should be set to the same distribution as the live +system. However, some times, one wants to use a newer or even daily built +installer. +.IP "\fB\-\-debian\-installer\-preseedfile\fP \fIFILE\fP|\fIURL\fP" 4 +sets the filename or URL for an optionally used and included preseeding file +for debian\-installer. +.IP "\fB\-\-debian\-installer\-gui\fP true|false" 4 +defines if the debian\-installer graphical GTK interface should be true or +not. In Debian mode and for most versions of Ubuntu, this option is true, +whereas otherwise false, by default. +.IP "\-d|\fB\-\-distribution\fP \fICODENAME\fP" 4 +defines the distribution of the resulting live system. +.IP \-\-\fBdump\fP 4 +prepares a report of the currently present live system configuration and the +version of live\-helper used. This is useful to provide if you submit bug +reports, we do get all informations required for us to locate and replicate +an error. +.IP "\-e|\fB\-\-encryption\fP false|aes128|aes192|aes256" 4 +defines if the root filesystem should be encrypted or not. By default, this +is false. +.IP "\fB\-\-fdisk\fP fdisk|fdisk.dist" 4 +sets the filename of the fdisk binary from the host system that should be +used. This is autodetected and does generally not need any customization. +.IP "\fB\-\-grub\-splash\fP \fIFILE\fP" 4 +defines the name of an optional to be included splash screen graphic for the +grub bootloader. +.IP "\fB\-\-gzip\-options\fP \fIOPTION\fP|\(dq\fIOPTIONS\fP\(dq" 4 +defines the default options that will be appended to (almost) every gzip +call during the building of the image. By default, this is set to \-\-best to +use highest (but slowest) compression. Dynamically, if the host system +supports it, also \-\-rsyncable is added. +.IP "\fB\-\-hooks\fP \fIFILE\fP" 4 +defines which hooks available in /usr/share/live\-helper/examples/hooks +should be activated. Normally, there are no hooks executed. Make sure you +know and understood the hook before you enable it. +.IP "\fB\-\-hostname\fP \fINAME\fP" 4 +sets the hostname of the live system. +.IP \fB\-\-ignore\-system\-defaults\fP 4 +\fBlh config\fP by default reads system defaults from /etc/default/live\-helper +when generating a new live system config directory. This is useful if you +want to set global settings, such as mirror locations, and don't want to +specify them all of the time. +.IP "\fB\-\-includes\fP \fIPATH\fP" 4 +sets the path to the includes that live\-helper is going to use, +e.g. additional minimal documentation that you want to have on all live +systems. By default, this is set to /usr/share/live\-helper/includes/. +.IP "\fB\-\-initramfs\fP auto|live\-initramfs|casper" 4 +sets the name of package that contains the live system specific initramfs +modification. By default, auto is used, which means that at build time of +the image rather than on configuration time, the value will be expanded to +casper when building etch systems and to live\-initramfs for all other +systems. +.IP "\fB\-\-interactive\fP shell" 4 +defines if after the chroot stage and before the beginning of the binary +stage, a interactive shell login should be spawned in the chroot in order to +allow you to do manual customizations. Once you close the shell with logout +or exit, the build will continue as usual. Note that it's strongly +discouraged to use this for anything else than testing. Modifications that +should be present in all builds of a live system should be properly made +through hooks. Everything else destroys the beauty of being able to +completely automatise the build process and making it non interactive. By +default, this is of course false. +.IP "\fB\-\-iso\-application\fP \fINAME\fP" 4 +sets the APPLICATION field in the header of a resulting CD/DVD image and +defaults to "Debian Live" in debian mode, and to "Emdebian Live" in emdebian +mode, and "Ubuntu Live" in ubuntu mode. +.IP "\fB\-\-iso\-preparer\fP \fINAME\fP" 4 +sets the PREPARER field in the header of a resulting CD/DVD image. By +default this is set to "live\-helper \fIVERSION\fP; +http://packages.qa.debian.org/live\-helper", whereas VERSION is expanded to +the version of live\-helper that was used to build the image. +.IP "\fB\-\-iso\-publisher\fP \fINAME\fP" 4 +sets the PUBLISHED field in the header of a resulting CD/DVD image. By +default, this is set to 'Debian Live project; http:/live.debian.net/; +debian\-live@lists.debian.org'. Remember to change this to the appropriate +values at latest when you distributing custom and unofficial images. +.IP "\fB\-\-iso\-volume\fP \fINAME\fP" 4 +sets the VOLUME field in the header of a resulting CD/DVD and defaults to +\&'(\fIMODE\fP) (\fIDISTRIBUTION\fP) (\fIDATE\fP)' whereas MODE is expanded to the name +of the mode in use, DISTRIBUTION the distribution name, and DATE with the +current date and time of the generation. When running in debian\-release mode +however, it will instead default to 'Debian (\fIVERSION\fP) (\fIARCHITECTURE\fP) +live' where VERSION becomes the numerical version of the release being built +and ARCHITECTURE becomes the name of the architecture. +.IP "\fB\-\-jffs2\-eraseblock\fP \fISIZE\fP" 4 +sets the eraseblock size for a JFFS2 (Second Journalling Flash File System) +filesystem. The default is 64 KiB. If you use an erase block size different +than the erase block size of the target MTD device, JFFS2 may not perform +optimally. If the SIZE specified is below 4096, the units are assumed to be +KiB. +.IP "\fB\-\-keyring\-packages\fP \fIPACKAGE|\(dqPACKAGES\fP\(dq" 4 +sets the keyring package or additional keyring packages. By default this is +set to debian\-archive\-keyring. +.IP "\-l|\fB\-\-language\fP \fILANGUAGE\fP" 4 +sets the language of a live system by installing l10n related packages and +enables generation of the correct locales through automatically setting the +right boot parameters. +.IP "\-k|\fB\-\-linux\-flavours\fP \fIFLAVOUR\fP|\(dq\fIFLAVOURS\fP\(dq" 4 +sets the kernel flavours to be installed. Note that in case you specify more +than that the first will be configured the default kernel that gets booted. +.IP "\fB\-\-linux\-packages\fP \(dq\fIPACKAGES\fP\(dq" 4 +sets the internal name of the kernel packages naming scheme. If you use +debian kernel packages, you will not have to adjust it. If you decide to use +custom kernel packages that do not follow the debian naming scheme, remember +to set this option to the stub of the packages only (for debian this is +linux\-image\-2.6), so that \fISTUB\fP\-\fIFLAVOUR\fP results in a valid package name +(for debian e.g. linux\-image\-2.6\-486). Preferably you use the meta package +name, if any, for the stub, so that your configuration is ABI +independent. Also don't forget that you have to include stubs of the binary +modules packages for unionfs or aufs, and squashfs if you built them +out\-of\-tree. +.IP "\fB\-\-losetup\fP losetup|losetup.orig" 4 +sets the filename of the losetup binary from the host system that should be +used. This is autodetected and does generally not need any customization. +.IP "\fB\-\-memtest\fP memtest86+|memtest86|none" 4 +defines if memtest, memtest86+ or no memory tester at all should be included +as secondary bootloader configuration. This is only available on amd64 and +i386 and defaults to memtest86+. +.IP "\-m|\fB\-\-mirror\-bootstrap\fP \fIURL\fP" 4 +sets the location of the debian package mirror that should be used to +bootstrap from. +.IP "\fB\-\-mirror\-binary\fP \fIURL\fP" 4 +sets the location of the debian package mirror that should end up configured +in the final image and which is the one a user would see and use. This has +not necessarily to be the same that is used to build the image, e.g. if you +use a local mirror but want to have an official mirror in the image. By +default, the same value that is used for \-\-mirror\-chroot is used here unless +specified different. +.IP "\fB\-\-mirror\-binary\-security\fP \fIURL\fP" 4 +sets the location of the debian security package mirror that should end up +configuered in the final image. By default, the same value that is used for +\-\-mirror\-chroot\-security is used here unless specified different. +.IP "\fB\-\-mirror\-chroot\fP \fIURL\fP" 4 +sets the location of the debian package mirror that will be used to fetch +the packages in order to build the live system. By default, this points to +http://ftp.us.debian.org/debian/ which may not be a good default if you live +outside the U.S. +.IP "\fB\-\-mirror\-chroot\-security\fP \fIURL\fP" 4 +sets the location of the debian security package mirror that will be used to +fetch the packages in order to build the live system. By default, this +points to http://security.debian.org/debian/. +.IP "\fB\-\-mirror\-debian\-installer\fP \fIURL\fP" 4 +sets the location of the mirror that will be used to fetch the debian +installer images. By default, this points to the same mirror used to build +the live system. +.IP "\fB\-\-mode\fP debian|emdebian|ubuntu" 4 +defines a global mode to load project specific defaults. By default this is +set to debian. +.IP "\fB\-\-net\-root\-filesystem\fP nfs|cfs" 4 +defines the filesystem that will be configured in the bootloader +configuration for your netboot image. This defaults to nfs. +.IP "\fB\-\-net\-root\-mountoptions\fP \fIOPTIONS\fP" 4 +sets additional options for mounting the root filesystem in netboot images +and is by default empty. +.IP "\fB\-\-net\-root\-path\fP \fIPATH\fP" 4 +sets the file path that will be configured in the bootloader configuration +for your netboot image. This defaults to /srv/debian\-live in debian mode and +to /srv/emebian\-live when being in emdebian mode, and /srv/ubuntu\-live when +in ubuntu mode. +.IP "\fB\-\-net\-root\-server\fP \fIIP\fP|\fIHOSTNAME\fP" 4 +sets the IP or hostname that will be configured in the bootloader +configuration for the root filesystem of your netboot image. This defaults +to 192.168.1.1. +.IP "\fB\-\-net\-cow\-filesystem\fP nfs|cfs" 4 +defines the filesystem type for the copy\-on\-write layer and defaults to nfs. +.IP "\fB\-\-net\-cow\-mountoptions\fP \fIOPTIONS\fP" 4 +sets additional options for mounting the copy\-on\-write layer in netboot +images and is by default empty. +.IP "\fB\-\-net\-cow\-path\fP \fIPATH\fP" 4 +defines the path to client writable filesystem. Anywhere that +\fIclient_mac_address\fP is specified in the path live\-initramfs will +substitute the MAC address of the client delimited with hyphens. +.PP +.IP "" 4 +Example: +.br +/export/hosts/client_mac_address +.br +/export/hosts/00\-16\-D3\-33\-92\-E8 +.IP "\fB\-\-net\-cow\-server\fP \fIIP\fP|\fIHOSTNAME\fP" 4 +sets the IP or hostname that will be configured in the bootloader +configuration for the copy\-on\-write filesystem of your netboot image and is +by default empty. +.IP "\fB\-\-net\-tarball\fP bzip2|gzip|tar|none" 4 +defines the format of the netboot image. Choosing tar results in a not +compressed tarball, bzip2 and gzip in a bzip2 resp. gzip compressed +tarball. Choosing none leads to no tarball at all, the plain binary +directory is considered the output in this case. Default is gzip. +.IP "\-p|\fB\-\-packages\-lists\fP \fILIST\fP|\(dq\fILISTS\fP\(dq" 4 +defines which lists available in /usr/share/live\-helper/lists should be +used. By default, this is set to standard. Note that in case you have local +packages lists, you don't need to list them here. Putting them into +config/chroot_local\-packageslists is enough (the filename needs to have the +\&.list suffix though). +.IP "\fB\-\-packages\fP \fIPACKAGE\fP|\(dq\fIPACKAGES\fP\(dq" 4 +defines one or more packages to be installed in the live system. This is a +quick and convenient place to add a few packages when building an image +(limited by the max length of shell). Packages that should be permanently +installed should be put into a local packages list. +.IP "\fB\-r, \-\-repositories\fP \fIREPOSITORY\fP|\(dq\fIREPOSITORIES\fP\(dq" 4 +enables one of available third\-party repository configurations in +/usr/share/live\-helper/repositories. +.IP "\fB\-\-root\-command\fP sudo" 4 +controls if live\-helper should use sudo internally to build the live +image. Note that this is not well tested and that you should, when relying +on sudo, call the individual live\-helper command with sudo itself. +.IP "\fB\-\-use\-fakeroot\fP true|false" 4 +controls if live\-helper should utilize fakeroot and fakechroot to try and +avoid requiring root privillages where possible. By default, this option is +false. +.IP "\fB\-\-archive\-areas\fP \fIARCHIVE_AREA\fP|\(dq\fIARCHIVE_AREAS\fP\(dq" 4 +defines which package archive areas of a debian packages archive should be +used for configured debian package mirrors. By default, this is set to +main. Remember to check the licenses of each packages with respect to their +redistributability in your juristiction when enabling contrib or non\-free +with this mechanism. +.IP "\fB\-\-security\fP true|false" 4 +defines if the security repositories specified in the security mirror +options should be used or not. +.IP "\fB\-\-source\fP true|false" 4 +defines if a corresponding source image to the binary image should be +build. By default this is false because most people do not require this and +would require to download quite a few source packages. However, once you +start distributing your live image, you should make sure you build it with a +source image alongside. +.IP "\-s|\fB\-\-source\-images\fP iso|net|tar|usb\-hdd" 4 +defines the image type for the source image. Default is tar. +.IP "\fB\-\-symlinks\fP true|false" 4 +defines if the symlink hack should be true or false. The symlink hack +converts all absolute symlinks to relative ones. By default this is false +and in general there is no need or gain to enable it. If you are in a +special situation that requires this, you will know. +.IP "\fB\-\-syslinux\-splash\fP \fIFILE\fP" 4 +defines the file of the syslinux splash graphic that should be used instead +of the default one. +.IP "\fB\-\-syslinux\-timeout\fP \fISECONDS\fP" 4 +defines the timeout the syslinux bootloader should wait for input from the +user at the bootprompt prior booting the default kernel. This defaults to 0 +which means it will wait forever. +.IP "\fB\-\-syslinux\-menu\fP true|false" 4 +defines if syslinux should be make use of the vgamenu capabilities or not. +.IP "\fB\-\-sysvinit\fP true|false" 4 +defines if the sysvinit hack should be true or false. The sysvinit hack +disables all non\-essential services from starting up at bootup in order to +reduce overall boottime. By default this is false and in general there you +don't want to enable it. +.IP "\fB\-\-tasksel\fP aptitude|tasksel" 4 +selects which program is used to install tasks. By default, this is set to +tasksel. +.IP "\fB\-\-tasks\fP \fITASK\fP|\(dq\fITASKS\fP\(dq" 4 +defines one or more package tasks to be installed in the live system. This +is a quick and convenient way to get a reasonable default selection of +packages suitable for most users when building an image, but it results in +quite big images. If you want to have finer grained package selections, +local packages lists should be used instead. +.IP "\fB\-\-templates\fP \fIPATH\fP" 4 +sets the path to the templates that live\-helper is going to use, e.g. for +bootloaders. By default, this is set to /usr/share/live\-helper/templates/. +.IP "\fB\-\-virtual\-root\-filesystem\fP ext3" 4 +defines what filesystem to format the root filesystem when building +virtual\-hdd images. +.IP "\fB\-\-virtual\-root\-size\fP MB" 4 +defines what size the virtual\-hdd image should be. Note that although the +default is set to 10000 (= 10GB), it will not need 10GB space on your +harddisk as the files are created as sparse files. +.IP "\fB\-\-exposed\-root\fP true|false" 4 +defines whether to expose the root filesystem as read only and not covered +by the union filesystem. This has useful implications for certain speciality +setups such as LTSP. By default, this option is false. +.IP "\fB\-\-username\fP \fINAME\fP" 4 +sets the name of the account of the default user in the live system. +.IP "\fB\-\-win32\-loader true|false\fP" 4 +.\" FIXME +defines if win32\-loader should be included in the binary image or not. + +.SH ENVIRONMENT +.\" FIXME +.\" FIXME +All command line switches can also be specified through the corresponding +environment variable. Environment variables are name LH_FOO, means, +e.g. \-\-apt\-ftp\-proxy becomes LH_APT_FTP_PROXY. However, this generally +should not be used. + +.SH FILES +.\" FIXME +.IP \fBauto/config\fP 4 +.IP \fB/etc/default/live\-helper\fP 4 +.\" FIXME +An optional, global configuration file for \fBlh config\fP variables. It is +useful to specify a few system wide defaults, like LH_MIRROR_BOOTSTRAP. This +feature can be false by specifying the \fB\-\-ignore\-system\-defaults\fP option. + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_local.de.1 b/manpages/de/lh_local.de.1 new file mode 100644 index 000000000..e070b9ed5 --- /dev/null +++ b/manpages/de/lh_local.de.1 @@ -0,0 +1,46 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh_local\fP \- wrapper for local live\-helper programs + +.SH SYNOPSIS +\fBlh local\fP [\fIlive\-helper\ options\fP] + +.SH DESCRIPTION +\fBlh local\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh local\fP has no specific options but understands all generic live\-helper +options. See \fIlive\-helper\fP(7) for a complete list of all generic +live\-helper options. + +.SH FILES +.IP \fBnone\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_source.de.1 b/manpages/de/lh_source.de.1 new file mode 100644 index 000000000..42cda21cf --- /dev/null +++ b/manpages/de/lh_source.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh source\fP \- Complete the source stage + +.SH SYNOPSIS +\fBlh source\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh source\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP +\fBlh source\fP calls all necessary live\-helper programs in the correct order +to complete the source stage. + +.SH OPTIONS +\fBlh source\fP has no specific options but understands all generic live\-helper +options. See \fIlive\-helper\fP(7) for a complete list of all generic +live\-helper options. + +.SH FILES +.IP \fBnone\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_source_checksums.de.1 b/manpages/de/lh_source_checksums.de.1 new file mode 100644 index 000000000..b6fe00fb0 --- /dev/null +++ b/manpages/de/lh_source_checksums.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_checksums\fP \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_checksums\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh sources_checksums\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh sources_checksums\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_source_debian-live.de.1 b/manpages/de/lh_source_debian-live.de.1 new file mode 100644 index 000000000..9c31f14a5 --- /dev/null +++ b/manpages/de/lh_source_debian-live.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_debian\-live\fP \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_debian\-live\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh sources_debian\-live\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh sources_debian\-live\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_source_debian.de.1 b/manpages/de/lh_source_debian.de.1 new file mode 100644 index 000000000..349c1e0df --- /dev/null +++ b/manpages/de/lh_source_debian.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_debian\fP \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_debian\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh sources_debian\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh sources_debian\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_source_disk.de.1 b/manpages/de/lh_source_disk.de.1 new file mode 100644 index 000000000..c4fd0a82a --- /dev/null +++ b/manpages/de/lh_source_disk.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_disk\fP \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_disk\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh sources_disk\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh sources_disk\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_source_iso.de.1 b/manpages/de/lh_source_iso.de.1 new file mode 100644 index 000000000..9b2c394fb --- /dev/null +++ b/manpages/de/lh_source_iso.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_iso\fP \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_iso\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh sources_iso\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh sources_iso\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_source_net.de.1 b/manpages/de/lh_source_net.de.1 new file mode 100644 index 000000000..1cfbfa08b --- /dev/null +++ b/manpages/de/lh_source_net.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_net\fP \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_net\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh sources_net\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh sources_net\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_source_tar.de.1 b/manpages/de/lh_source_tar.de.1 new file mode 100644 index 000000000..c7a9a9246 --- /dev/null +++ b/manpages/de/lh_source_tar.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_tar\fP \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_tar\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh sources_tar\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh sources_tar\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_source_usb.de.1 b/manpages/de/lh_source_usb.de.1 new file mode 100644 index 000000000..11c47b7ee --- /dev/null +++ b/manpages/de/lh_source_usb.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_usb\fP \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_usb\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh sources_usb\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), +the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh sources_usb\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_source_virtual-hdd.de.1 b/manpages/de/lh_source_virtual-hdd.de.1 new file mode 100644 index 000000000..16de55cfe --- /dev/null +++ b/manpages/de/lh_source_virtual-hdd.de.1 @@ -0,0 +1,47 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_virtual\-hdd\fP \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_virtual\-hdd\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh sources_virtual\-hdd\fP is a low\-level command (plumbing) of +\fIlive\-helper\fP(7), the Debian Live tool suite. +.PP + +.\" FIXME +.SH OPTIONS +\fBlh sources_virtual\-hdd\fP has no specific options but understands all +generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of +all generic live\-helper options. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/lh_testroot.de.1 b/manpages/de/lh_testroot.de.1 new file mode 100644 index 000000000..6bfd1538a --- /dev/null +++ b/manpages/de/lh_testroot.de.1 @@ -0,0 +1,53 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh testroot\fP \- Ensure that a system is built as root + +.SH SYNOPSIS +\fBlh testroot\fP [\fIlive\-helper options\fP] + +.SH DESCRIPTION +\fBlh testroot\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the +Debian Live tool suite. +.PP +.\" FIXME +\fBlh testroot\fP simply checks to see if you are root. If not, it exits with +an error. Debian Live images must currently be built as real root. +.PP +.\" FIXME +Note: Support for using \fIfakeroot\fP(1) and \fIsudo\fP(8) internally in +live\-helper itself is still experimental, however, calling a helper yourself +with sudo is safe. + +.SH OPTIONS +\fBlh testroot\fP has no specific options but understands all generic +live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all +generic live\-helper options. + +.SH FILES +.IP \fBnone\fP 4 + +.SH "SEE ALSO" +\fIlive\-helper\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/de/live-helper.de.7 b/manpages/de/live-helper.de.7 new file mode 100644 index 000000000..64e1bcf67 --- /dev/null +++ b/manpages/de/live-helper.de.7 @@ -0,0 +1,310 @@ +.\"******************************************************************* +.\" +.\" This file was generated with po4a. Translate the source file. +.\" +.\"******************************************************************* +.TH LIVE\-HELPER 7 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlive\-helper\fP \- the Debian Live tool suite + +.SH SYNOPSIS +.\" FIXME +.\" FIXME +\fBlh \fP\fICOMMAND\fP [\fB\-h|\-\-help\fP] [\fB\-u|\-\-usage\fP] [\fB\-v|\-\-version\fP] +[\fB\-\-breakpoints\fP] [\fB\-\-conffile\fP] [\fB\-\-debug\fP] [\fB\-\-force\fP] [\fB\-\-quiet\fP] +[\fB\-\-verbose\fP] + +.SH DESCRIPTION +.\" FIXME +live\-helper is a set of scripts to build Debian Live system images. The idea +behind live\-helper is a tool suite that uses a configuration directory to +completely automate and customize all aspects of building a Live image. +.PP +The \fICOMMAND\fP is a name of a live\-helper command (see below). +.PP +.\" FIXME +More documentation about how to use live\-helper is available in the +individual manpages for each helper and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH OPTIONS +.\" FIXME +.SS "Shared live\-helper options" +The following command line options are supported by all live\-helper +programs. +.IP "\fB\-h, \-\-help\fP" 4 +display help and exit. +.IP "\fB\-u, \-\-usage\fP" 4 +show usage and exit. +.IP "\fB\-v, \-\-version\fP" 4 +output version information and exit. +.SS "Common live\-helper options" +The following command line options are supported by most live\-helper +programs. See the man page of each program for a complete explanation of +what each option does. +.IP \fB\-\-breakpoints\fP 4 +run with breakpoints. +.IP \fB\-\-conffile\fP 4 +use custom configuration file. +.IP \fB\-\-debug\fP 4 +show debug information. +.IP \fB\-\-force\fP 4 +force helper execution, even if stage file exists. +.IP \fB\-\-quiet\fP 4 +be quiet. +.IP \fB\-\-verbose\fP 4 +.\" FIXME +be verbose. + +.SH "LIVE\-HELPER COMMANDS" +.\" FIXME +We divide live\-helper into high level ("porcelain") commands and low level +("plumbing") commands. +.PP +.\" FIXME +Here is the complete list of all available live\-helper commands. See their +man pages for additional documentation. + +.SH "HIGH\-LEVEL COMMANDS (PORCELAIN)" +.\" FIXME +We separate the porcelain commands into the main commands and some ancillary +user utilities. +.SS "Main porcelain commands" +.IP \fBlh_config\fP(1) 4 +create configuration for live\-helper +.IP \fBlh_bootstrap\fP(1) 4 +create the first stage by bootstrapping a basic debian system +.IP \fBlh_chroot\fP(1) 4 +create the second stage by customizing the chroot +.IP \fBlh_binary\fP(1) 4 +create the third stage by generating a binary image +.IP \fBlh_source\fP(1) 4 +create the optional fourth stage by generating a source image +.IP \fBlh_clean\fP(1) 4 +clean up system build directories +.SS "Ancillary Commands" +.IP \fBlh\fP(1) 4 +generic live\-helper wrapper +.IP \fBlh_build\fP(1) 4 +alias for all stages +.IP \fBlh_local\fP(1) 4 +helper for using a local live\-helper +.IP \fBlh_testroot\fP(1) 4 +.\" FIXME +ensure that a system is built as root + +.SH "LOW\-LEVEL COMMANDS (PLUMBING)" +.\" FIXME +The actual work of live\-helper is implemented in the low\-level commands, +called plumbing. They are not supposed to be used by end users, they should +stick with porcelains as they ensure that all the different plumbing +commands are executed in the right order. However, if you intend to reuse +live\-helper commands in your own scripts, then the plumbings might be of +interest for you. +.PP +Note that the interface (set of options and the semantics) to these +low\-level commands are meant to be a lot more stable than Porcelain level +commands. The interface to Porcelain commands on the other hand are subject +to change in order to improve the end user experience. +.SS "Bootstrap commands" +.IP \fBlh_bootstrap_cache\fP(1) 4 +cache bootstrap stage +.IP \fBlh_bootstrap_cdebootstrap\fP(1) 4 +bootstrap a Debian system with cdebootstrap(1) +.IP \fBlh_bootstrap_copy\fP(1) 4 +bootstrap by copying the host system +.IP \fBlh_bootstrap_debootstrap\fP(1) 4 +bootstrap a Debian system with debootstrap(8) +.SS "Chroot commands" +.IP \fBlh_chroot_apt\fP(1) 4 +manage /etc/apt/apt.conf +.IP \fBlh_chroot_cache\fP(1) 4 +cache chroot stage +.IP \fBlh_chroot_debianchroot\fP(1) 4 +manage /etc/debian_chroot +.IP \fBlh_chroot_devpts\fP(1) 4 +mount /dev/pts +.IP \fBlh_chroot_dpkg\fP(1) 4 +manage /sbin/dpkg +.IP \fBlh_chroot_hacks\fP(1) 4 +execute hacks in chroot +.IP \fBlh_chroot_hooks\fP(1) 4 +execute hooks in chroot +.IP \fBlh_chroot_hostname\fP(1) 4 +manage /bin/hostname +.IP \fBlh_chroot_hosts\fP(1) 4 +manage /etc/hosts +.IP \fBlh_chroot_install\-packages\fP(1) 4 +install queued packages into chroot +.IP \fBlh_chroot_interactive\fP(1) 4 +make build interactive +.IP \fBlh_chroot_linux\-image\fP(1) 4 +manage /etc/kernel\-img.conf +.IP \fBlh_chroot_local\-hooks\fP(1) 4 +execute local hooks in chroot +.IP \fBlh_chroot_local\-includes\fP(1) 4 +copy local files into chroot +.IP \fBlh_chroot_localization\fP(1) 4 +install localization packages into chroot +.IP \fBlh_chroot_local\-packages\fP(1) 4 +queue install of local packages into chroot +.IP \fBlh_chroot_local\-patches\fP(1) 4 +apply local patches against chroot +.IP \fBlh_chroot_local\-preseed\fP(1) 4 +use debconf local preseeding file +.IP \fBlh_chroot_packages\fP(1) 4 +queue install of packages into chroot +.IP \fBlh_chroot_packageslists\fP(1) 4 +queue install of packages lists into chroot +.IP \fBlh_chroot_preseed\fP(1) 4 +use debconf preseeding file +.IP \fBlh_chroot_proc\fP(1) 4 +mount /proc +.IP \fBlh_chroot_resolv\fP(1) 4 +manage /etc/resolv.conf +.IP \fBlh_chroot_selinuxfs\fP(1) 4 +mount /selinux +.IP \fBlh_chroot_sources\fP(1) 4 +manage /etc/apt/sources.list +.IP \fBlh_chroot_symlinks\fP(1) 4 +convert symlinks +.IP \fBlh_chroot_sysfs\fP(1) 4 +mount /sys +.IP \fBlh_chroot_sysvinit\fP(1) 4 +configure sysvinit +.IP \fBlh_chroot_sysv\-rc\fP(1) 4 +manage /usr/sbin/policy\-rc.d +.IP \fBlh_chroot_tasks\fP(1) 4 +install tasks into chroot +.SS "Binary commands" +.IP \fBlh_binary_chroot\fP(1) 4 +copy chroot into chroot +.IP \fBlh_binary_debian\-installer\fP(1) 4 +install debian\-installer into binary +.IP \fBlh_binary_disk\fP(1) 4 +install disk information into binary +.IP \fBlh_binary_encryption\fP(1) 4 +encrypts rootfs +.IP \fBlh_binary_grub\fP(1) 4 +installs grub into binary +.IP \fBlh_binary_grub2\fP(1) 4 +installs grub2 into binary +.IP \fBlh_binary_includes\fP(1) 4 +copy files into binary +.IP \fBlh_binary_iso\fP(1) 4 +build iso binary image +.IP \fBlh_binary_linux\-image\fP(1) 4 +install linux\-image into binary +.IP \fBlh_binary_local\-hooks\fP(1) 4 +execute local hooks in binary +.IP \fBlh_binary_local\-includes\fP(1) 4 +copy files into binary +.IP \fBlh_binary_local\-packageslists\fP(1) 4 +install local packages lists into binary +.IP \fBlh_binary_manifest\fP(1) 4 +create manifest +.IP \fBlh_binary_checksums\fP(1) 4 +create binary checksums (md5, sha1, and/or sha256) +.IP \fBlh_binary_memtest\fP(1) 4 +installs a memtest into binary +.IP \fBlh_binary_net\fP(1) 4 +build netboot binary image +.IP \fBlh_binary_rootfs\fP(1) 4 +build rootfs image +.IP \fBlh_binary_silo\fP(1) 4 +installs silo into binary +.IP \fBlh_binary_syslinux\fP(1) 4 +installs syslinux into binary +.IP \fBlh_binary_tar\fP(1) 4 +build harddisk binary image +.IP \fBlh_binary_usb\fP(1) 4 +build binary usb\-hdd image +.IP \fBlh_binary_virtual\-hdd\fP(1) 4 +build binary virtual\-hdd image +.IP \fBlh_binary_win32\-loader\fP(1) 4 +installs win32\-loader into binary +.IP \fBlh_binary_yaboot\fP(1) 4 +installs yaboot into binary +.SS "Source commands" +.IP \fBlh_source_debian\fP(1) 4 +download sources +.IP \fBlh_source_debian\-live\fP(1) 4 +copy debian\-live config into source +.IP \fBlh_source_disk\fP(1) 4 +install disk information into source +.IP \fBlh_source_iso\fP(1) 4 +build iso source image +.IP \fBlh_source_checksums\fP(1) 4 +create source checksums (md5, sha1, and/or sha256) +.IP \fBlh_source_net\fP(1) 4 +build source net image +.IP \fBlh_source_tar\fP(1) 4 +build source tarball +.IP \fBlh_source_usb\fP(1) 4 +build source usb\-hdd image +.IP \fBlh_source_virtual\-hdd\fP(1) 4 +.\" FIXME +build source virtual\-hdd image + +.SH "CONFIG FILES" +.\" FIXME +Many live\-helper commands make use of files in the \fIconfig/\fP directory to +control what they do. Besides the common \fIconfig/common\fP, which is used by +all live\-helper commands, some additional files can be used to configure the +behavior of specific live\-helper commands. These files are typically named +config/stage or config/stage_helper (where "stage" of course, is replaced +with the name of the stage that they belong to, and "helper" with the name +of the helper). +.PP +For example, lh_bootstrap_debootstrap uses files named config/bootstrap and +config/bootstrap_debootstrap to read the options it will use. See the man +pages of individual commands for details about the names and formats of the +files they use. Generally, these files contain variables with values +assigned, one variable per line. Some programs in live\-helper use pairs of +values or slightly more complicated variable assignments. +.PP +Note that live\-helper will respect environment variables which are present +in the context of the shell it is running. If variables can be read from +config files, then they override environment variables, and if command line +options are used, they override values from config files. If no value for a +given variable can be found and thus is unset, live\-helper will +automatically set it to the default value. +.PP +In some rare cases, you may want to have different versions of these files +for different architectures or distributions. If files named +config/stage.arch or config/stage_helper.arch, and config/stage.dist or +config/stage_helper.dist exist, where "arch" is the same as the output of +"dpkg \-\-print\-architecture" and "dist" is the same as the codename of the +target distribution, then they will be used in preference to other, more +general files. +.PP +.\" FIXME +All config files are shell scripts which are sourced by a live\-helper +program. That means they have to follow the normal shell syntax. You can +also put comments in these files; lines beginning with "#" are ignored. + +.SH FILES +.\" FIXME +.IP \fBn/a\fP 4 + +.\" FIXME +.SH "SEE ALSO" +\fIlive\-initramfs\fP(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 +on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at +<\fIhttp://live.debian.net/manual/\fP>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package +in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or +by writing a mail to the Debian Live mailing list at +<\fIdebian\-live@lists.debian.org\fP>. + +.SH AUTHOR +live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for +the Debian project. diff --git a/manpages/en/lh.1 b/manpages/en/lh.1 new file mode 100644 index 000000000..cff10ff75 --- /dev/null +++ b/manpages/en/lh.1 @@ -0,0 +1,34 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh\fR \- wrapper for live\-helper programs + +.SH SYNOPSIS +\fBlh\fR COMMAND [COMMAND_OPTIONS] +.PP +\fBlh\fR [\fIlive\-helper\ options\fR] + +.SH DESCRIPTION +\fBlh\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh\fR 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 FILES +.IP "\fBnone\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary.1 b/manpages/en/lh_binary.1 new file mode 100644 index 000000000..a84ffd792 --- /dev/null +++ b/manpages/en/lh_binary.1 @@ -0,0 +1,32 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +\fBlh binary\fR calls all necessary live\-helper programs in the correct order to complete the binary stage. + +.SH OPTIONS +\fBlh binary\fR 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 FILES +.IP "\fBnone\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_checksums.1 b/manpages/en/lh_binary_checksums.1 new file mode 100644 index 000000000..e104ba07a --- /dev/null +++ b/manpages/en/lh_binary_checksums.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_checksums\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_checksums\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_checksums\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_checksums\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_chroot.1 b/manpages/en/lh_binary_chroot.1 new file mode 100644 index 000000000..8638e640e --- /dev/null +++ b/manpages/en/lh_binary_chroot.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_chroot\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_chroot\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_chroot\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_chroot\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_debian-installer.1 b/manpages/en/lh_binary_debian-installer.1 new file mode 100644 index 000000000..548194a2e --- /dev/null +++ b/manpages/en/lh_binary_debian-installer.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_debian\-installer\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_debian\-installer\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_debian\-installer\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_debian\-installer\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_disk.1 b/manpages/en/lh_binary_disk.1 new file mode 100644 index 000000000..de3e55ee7 --- /dev/null +++ b/manpages/en/lh_binary_disk.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_disk\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_disk\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_disk\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_disk\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_encryption.1 b/manpages/en/lh_binary_encryption.1 new file mode 100644 index 000000000..a023e299e --- /dev/null +++ b/manpages/en/lh_binary_encryption.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_encryption\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_encryption\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_encryption\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_encryption\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_grub.1 b/manpages/en/lh_binary_grub.1 new file mode 100644 index 000000000..4b08d43ea --- /dev/null +++ b/manpages/en/lh_binary_grub.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_grub\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_grub\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_grub\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_grub\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_grub2.1 b/manpages/en/lh_binary_grub2.1 new file mode 100644 index 000000000..466e541af --- /dev/null +++ b/manpages/en/lh_binary_grub2.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_grub2\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_grub2\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_grub2\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_grub2\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_includes.1 b/manpages/en/lh_binary_includes.1 new file mode 100644 index 000000000..8331a6825 --- /dev/null +++ b/manpages/en/lh_binary_includes.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_includes\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_includes\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_includes\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_includes\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_iso.1 b/manpages/en/lh_binary_iso.1 new file mode 100644 index 000000000..937f41ac0 --- /dev/null +++ b/manpages/en/lh_binary_iso.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_iso\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_iso\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_iso\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_iso\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_linux-image.1 b/manpages/en/lh_binary_linux-image.1 new file mode 100644 index 000000000..a093ba72a --- /dev/null +++ b/manpages/en/lh_binary_linux-image.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_linux\-image\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_linux\-image\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_linux\-image\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_linux\-image\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_local-hooks.1 b/manpages/en/lh_binary_local-hooks.1 new file mode 100644 index 000000000..6ba300cce --- /dev/null +++ b/manpages/en/lh_binary_local-hooks.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_local\-hooks\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_local\-hooks\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_local\-hooks\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_local\-hooks\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_local-includes.1 b/manpages/en/lh_binary_local-includes.1 new file mode 100644 index 000000000..fbd65f988 --- /dev/null +++ b/manpages/en/lh_binary_local-includes.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_local\-includes\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_local\-includes\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_local\-includes\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_local\-includes\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_local-packageslists.1 b/manpages/en/lh_binary_local-packageslists.1 new file mode 100644 index 000000000..2046e22fc --- /dev/null +++ b/manpages/en/lh_binary_local-packageslists.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_local-packageslists\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_local-packageslists\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_local-packageslists\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_local-packageslists\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_manifest.1 b/manpages/en/lh_binary_manifest.1 new file mode 100644 index 000000000..b8c25df95 --- /dev/null +++ b/manpages/en/lh_binary_manifest.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_manifest\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_manifest\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_manifest\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_manifest\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_memtest.1 b/manpages/en/lh_binary_memtest.1 new file mode 100644 index 000000000..c9acca2e6 --- /dev/null +++ b/manpages/en/lh_binary_memtest.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_memtest\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_memtest\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_memtest\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_memtest\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_net.1 b/manpages/en/lh_binary_net.1 new file mode 100644 index 000000000..8828fa5ad --- /dev/null +++ b/manpages/en/lh_binary_net.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_net\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_net\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_net\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_net\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_rootfs.1 b/manpages/en/lh_binary_rootfs.1 new file mode 100644 index 000000000..eddd6eec3 --- /dev/null +++ b/manpages/en/lh_binary_rootfs.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_rootfs\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_rootfs\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_rootfs\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_rootfs\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_silo.1 b/manpages/en/lh_binary_silo.1 new file mode 100644 index 000000000..ba7be19b9 --- /dev/null +++ b/manpages/en/lh_binary_silo.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_silo\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_silo\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_silo\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_silo\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_syslinux.1 b/manpages/en/lh_binary_syslinux.1 new file mode 100644 index 000000000..0951aaa5d --- /dev/null +++ b/manpages/en/lh_binary_syslinux.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_syslinux\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_syslinux\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_syslinux\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_syslinux\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_tar.1 b/manpages/en/lh_binary_tar.1 new file mode 100644 index 000000000..341dbd0c9 --- /dev/null +++ b/manpages/en/lh_binary_tar.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_tar\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_tar\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_tar\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_tar\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_usb.1 b/manpages/en/lh_binary_usb.1 new file mode 100644 index 000000000..3b90b1bf2 --- /dev/null +++ b/manpages/en/lh_binary_usb.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_usb\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_usb\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_usb\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_usb\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_virtual-hdd.1 b/manpages/en/lh_binary_virtual-hdd.1 new file mode 100644 index 000000000..81b249eda --- /dev/null +++ b/manpages/en/lh_binary_virtual-hdd.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_virtual\-hdd\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_virtual\-hdd\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_virtual\-hdd\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_virtual\-hdd\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_win32-loader.1 b/manpages/en/lh_binary_win32-loader.1 new file mode 100644 index 000000000..ed964c686 --- /dev/null +++ b/manpages/en/lh_binary_win32-loader.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_win32\-loader\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_win32\-loader\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_win32\-loader\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_win32\-loader\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_binary_yaboot.1 b/manpages/en/lh_binary_yaboot.1 new file mode 100644 index 000000000..2ef2982c9 --- /dev/null +++ b/manpages/en/lh_binary_yaboot.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh binary_yaboot\fR \- Complete the binary stage + +.SH SYNOPSIS +\fBlh binary_yaboot\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh binary_yaboot\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh binary_yaboot\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_bootstrap.1 b/manpages/en/lh_bootstrap.1 new file mode 100644 index 000000000..b0bc0c702 --- /dev/null +++ b/manpages/en/lh_bootstrap.1 @@ -0,0 +1,32 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh bootstrap \fR \- Complete the bootstrap stage + +.SH SYNOPSIS +\fBlh bootstrap\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh bootstrap\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +\fBlh bootstrap\fR calls all necessary live\-helper programs in the correct order to complete the bootstrap stage. + +.SH OPTIONS +\fBlh bootstrap\fR 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 FILES +.IP "\fBnone\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_bootstrap_cache.1 b/manpages/en/lh_bootstrap_cache.1 new file mode 100644 index 000000000..db74b6cf6 --- /dev/null +++ b/manpages/en/lh_bootstrap_cache.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh bootstrap_cache\fR \- Complete the bootstrap stage + +.SH SYNOPSIS +\fBlh bootstrap_cache\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh bootstrap_cache\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh bootstrap_cache\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_bootstrap_cdebootstrap.1 b/manpages/en/lh_bootstrap_cdebootstrap.1 new file mode 100644 index 000000000..ec0364b12 --- /dev/null +++ b/manpages/en/lh_bootstrap_cdebootstrap.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh bootstrap_cdebootstrap\fR \- Complete the bootstrap stage + +.SH SYNOPSIS +\fBlh bootstrap_cdebootstrap\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh bootstrap_cdebootstrap\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh bootstrap_cdebootstrap\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_bootstrap_copy.1 b/manpages/en/lh_bootstrap_copy.1 new file mode 100644 index 000000000..80ebb34b8 --- /dev/null +++ b/manpages/en/lh_bootstrap_copy.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh bootstrap_copy\fR \- Complete the bootstrap stage + +.SH SYNOPSIS +\fBlh bootstrap_copy\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh bootstrap_copy\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh bootstrap_copy\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_bootstrap_debootstrap.1 b/manpages/en/lh_bootstrap_debootstrap.1 new file mode 100644 index 000000000..5372bed7b --- /dev/null +++ b/manpages/en/lh_bootstrap_debootstrap.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh bootstrap_debootstrap\fR \- Complete the bootstrap stage + +.SH SYNOPSIS +\fBlh bootstrap_debootstrap\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh bootstrap_debootstrap\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh bootstrap_debootstrap\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_build.1 b/manpages/en/lh_build.1 new file mode 100644 index 000000000..d84559857 --- /dev/null +++ b/manpages/en/lh_build.1 @@ -0,0 +1,34 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh build\fR \- Complete the bootstrap, chroot, binary, and source stages + +.SH SYNOPSIS +\fBlh build\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh build\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +\fBlh build\fR calls all necessary live\-helper programs in the correct order to complete the bootstrap, chroot, binary, and source stages. + +.SH OPTIONS +\fBlh build\fR 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 FILES +.\" FIXME +.IP "\fBauto/config\fR" 4 +.\" FIXME + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot.1 b/manpages/en/lh_chroot.1 new file mode 100644 index 000000000..cecb9fa65 --- /dev/null +++ b/manpages/en/lh_chroot.1 @@ -0,0 +1,32 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +\fBlh chroot\fR calls all necessary live\-helper programs in the correct order to complete the chroot stage. + +.SH OPTIONS +\fBlh chroot\fR 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 FILES +.IP "\fBnone\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_apt.1 b/manpages/en/lh_chroot_apt.1 new file mode 100644 index 000000000..2adde7ca5 --- /dev/null +++ b/manpages/en/lh_chroot_apt.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_apt\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_apt\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_apt\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_apt\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_cache.1 b/manpages/en/lh_chroot_cache.1 new file mode 100644 index 000000000..abe384310 --- /dev/null +++ b/manpages/en/lh_chroot_cache.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_cache\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_cache\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_cache\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_cache\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_debianchroot.1 b/manpages/en/lh_chroot_debianchroot.1 new file mode 100644 index 000000000..b4b0a8eba --- /dev/null +++ b/manpages/en/lh_chroot_debianchroot.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_debianchroot\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_debianchroot\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_debianchroot\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_debianchroot\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_devpts.1 b/manpages/en/lh_chroot_devpts.1 new file mode 100644 index 000000000..457c28ce5 --- /dev/null +++ b/manpages/en/lh_chroot_devpts.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_devpts\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_devpts\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_devpts\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_devpts\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_dpkg.1 b/manpages/en/lh_chroot_dpkg.1 new file mode 100644 index 000000000..043525fd2 --- /dev/null +++ b/manpages/en/lh_chroot_dpkg.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_dpkg\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_dpkg\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_dpkg\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_dpkg\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_hacks.1 b/manpages/en/lh_chroot_hacks.1 new file mode 100644 index 000000000..99b1d6339 --- /dev/null +++ b/manpages/en/lh_chroot_hacks.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_hacks\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_hacks\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_hacks\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_hacks\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_hooks.1 b/manpages/en/lh_chroot_hooks.1 new file mode 100644 index 000000000..01d043bc1 --- /dev/null +++ b/manpages/en/lh_chroot_hooks.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_hooks\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_hooks\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_hooks\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_hooks\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_hostname.1 b/manpages/en/lh_chroot_hostname.1 new file mode 100644 index 000000000..24e350061 --- /dev/null +++ b/manpages/en/lh_chroot_hostname.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_hostname\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_hostname\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_hostname\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_hostname\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_hosts.1 b/manpages/en/lh_chroot_hosts.1 new file mode 100644 index 000000000..50fd27fe8 --- /dev/null +++ b/manpages/en/lh_chroot_hosts.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_hosts\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_hosts\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_hosts\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_hosts\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_install-packages.1 b/manpages/en/lh_chroot_install-packages.1 new file mode 100644 index 000000000..d585a9074 --- /dev/null +++ b/manpages/en/lh_chroot_install-packages.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_install\-packages\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_install\-packages\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_install\-packages\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_install\-packages\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_interactive.1 b/manpages/en/lh_chroot_interactive.1 new file mode 100644 index 000000000..9f73c799a --- /dev/null +++ b/manpages/en/lh_chroot_interactive.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_interactive\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_interactive\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_interactive\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_interactive\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_linux-image.1 b/manpages/en/lh_chroot_linux-image.1 new file mode 100644 index 000000000..afd46a307 --- /dev/null +++ b/manpages/en/lh_chroot_linux-image.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_linux\-image\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_linux\-image\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_linux\-image\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_linux\-image\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_local-hooks.1 b/manpages/en/lh_chroot_local-hooks.1 new file mode 100644 index 000000000..99d32c4d3 --- /dev/null +++ b/manpages/en/lh_chroot_local-hooks.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-hooks\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-hooks\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_local\-hooks\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_local\-hooks\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_local-includes.1 b/manpages/en/lh_chroot_local-includes.1 new file mode 100644 index 000000000..99d3ee4d4 --- /dev/null +++ b/manpages/en/lh_chroot_local-includes.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-includes\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-includes\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_local\-includes\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_local\-includes\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_local-packages.1 b/manpages/en/lh_chroot_local-packages.1 new file mode 100644 index 000000000..70a2af23b --- /dev/null +++ b/manpages/en/lh_chroot_local-packages.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-packages\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-packages\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_local\-packages\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_local\-packages\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_local-packageslists.1 b/manpages/en/lh_chroot_local-packageslists.1 new file mode 100644 index 000000000..40de5a663 --- /dev/null +++ b/manpages/en/lh_chroot_local-packageslists.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-packageslists\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-packageslists\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_local\-packageslists\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_local\-packageslists\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_local-patches.1 b/manpages/en/lh_chroot_local-patches.1 new file mode 100644 index 000000000..c5d8c6609 --- /dev/null +++ b/manpages/en/lh_chroot_local-patches.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-patches\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-patches\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_local\-patches\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_local\-patches\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_local-preseed.1 b/manpages/en/lh_chroot_local-preseed.1 new file mode 100644 index 000000000..1460d5a0b --- /dev/null +++ b/manpages/en/lh_chroot_local-preseed.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_local\-preseed\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_local\-preseed\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_local\-preseed\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_local\-preseed\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_localization.1 b/manpages/en/lh_chroot_localization.1 new file mode 100644 index 000000000..91b2b9de8 --- /dev/null +++ b/manpages/en/lh_chroot_localization.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_localization\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_localization\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_localization\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_localization\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_packages.1 b/manpages/en/lh_chroot_packages.1 new file mode 100644 index 000000000..47f625426 --- /dev/null +++ b/manpages/en/lh_chroot_packages.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_packages\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_packages\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_packages\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_packages\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_packageslists.1 b/manpages/en/lh_chroot_packageslists.1 new file mode 100644 index 000000000..23e95ed24 --- /dev/null +++ b/manpages/en/lh_chroot_packageslists.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_packageslists\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_packageslists\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_packageslists\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_packageslists\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_preseed.1 b/manpages/en/lh_chroot_preseed.1 new file mode 100644 index 000000000..76388e367 --- /dev/null +++ b/manpages/en/lh_chroot_preseed.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_preseed\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_preseed\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_preseed\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_preseed\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_proc.1 b/manpages/en/lh_chroot_proc.1 new file mode 100644 index 000000000..b7cf8f05d --- /dev/null +++ b/manpages/en/lh_chroot_proc.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_proc\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_proc\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_proc\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_proc\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_resolv.1 b/manpages/en/lh_chroot_resolv.1 new file mode 100644 index 000000000..9e6af4b60 --- /dev/null +++ b/manpages/en/lh_chroot_resolv.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_resolv\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_resolv\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_resolv\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_resolv\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_selinuxfs.1 b/manpages/en/lh_chroot_selinuxfs.1 new file mode 100644 index 000000000..761b413f6 --- /dev/null +++ b/manpages/en/lh_chroot_selinuxfs.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_selinuxfs\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_selinuxfs\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_selinuxfs\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_selinuxfs\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_sources.1 b/manpages/en/lh_chroot_sources.1 new file mode 100644 index 000000000..02f62290b --- /dev/null +++ b/manpages/en/lh_chroot_sources.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_sources\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_sources\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_sources\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_sources\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_symlinks.1 b/manpages/en/lh_chroot_symlinks.1 new file mode 100644 index 000000000..70a446b13 --- /dev/null +++ b/manpages/en/lh_chroot_symlinks.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_symlinks\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_symlinks\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_symlinks\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_symlinks\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_sysfs.1 b/manpages/en/lh_chroot_sysfs.1 new file mode 100644 index 000000000..d6a93ddf1 --- /dev/null +++ b/manpages/en/lh_chroot_sysfs.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_sysfs\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_sysfs\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_sysfs\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_sysfs\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_sysv-rc.1 b/manpages/en/lh_chroot_sysv-rc.1 new file mode 100644 index 000000000..2641eeb6f --- /dev/null +++ b/manpages/en/lh_chroot_sysv-rc.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_sysv-rc\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_sysv-rc\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_sysv-rc\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_sysv-rc\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_sysvinit.1 b/manpages/en/lh_chroot_sysvinit.1 new file mode 100644 index 000000000..19913aafc --- /dev/null +++ b/manpages/en/lh_chroot_sysvinit.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_sysvinit\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_sysvinit\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_sysvinit\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_sysvinit\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_tasks.1 b/manpages/en/lh_chroot_tasks.1 new file mode 100644 index 000000000..164687a50 --- /dev/null +++ b/manpages/en/lh_chroot_tasks.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_tasks\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_tasks\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_tasks\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_tasks\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_chroot_upstart.1 b/manpages/en/lh_chroot_upstart.1 new file mode 100644 index 000000000..35ee3b462 --- /dev/null +++ b/manpages/en/lh_chroot_upstart.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh chroot_upstart\fR \- Complete the chroot stage + +.SH SYNOPSIS +\fBlh chroot_upstart\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh chroot_upstart\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh chroot_upstart\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_clean.1 b/manpages/en/lh_clean.1 new file mode 100644 index 000000000..2ec7a6547 --- /dev/null +++ b/manpages/en/lh_clean.1 @@ -0,0 +1,55 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh clean\fR \- Clean build directory + +.SH SYNOPSIS +\fBlh clean\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh clean\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME +\fBlh clean\fR is responsible for cleaning up after a system is built. It removes the build directories, and removes some other files including stage files, and any detritus left behind by other live\-helper commands. +.\" FIXME + +.SH OPTIONS +In addition to its specific options \fBlh clean\fR understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. +.PP +.\" FIXME +.IP "\fB\-\-all\fR" 4 +removes chroot, binary, stage, and source. The cache directory is kept. This is the default operation and will be performed if no argument is given. +.IP "\fB\-\-cache\fR" 4 +removes the cache directories. +.IP "\fB\-\-chroot\fR" 4 +unmounts and removes the chroot directory. +.IP "\fB\-\-binary\fR" 4 +removes all binary related caches, files, directories, and stages files. +.IP "\fB\-\-purge\fR" 4 +removes everything, including all caches. The config directory is kept. +.IP "\fB\-\-remove\fR" 4 +removes everything, including package cache but not stage cache. The config directory is kept. +.IP "\fB\-\-stage\fR" 4 +removes all stage files. +.IP "\fB\-\-source\fR" 4 +removes all source related caches, files, directories, and stage files. +.\" FIXME + +.SH FILES +.\" FIXME +.IP "\fBauto/clean\fR" 4 +.\" FIXME + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_config.1 similarity index 75% rename from manpages/lh_config.en.1 rename to manpages/en/lh_config.1 index c8ec667a2..66fc7897a 100644 --- a/manpages/lh_config.en.1 +++ b/manpages/en/lh_config.1 @@ -1,10 +1,13 @@ -.TH LH_CONFIG 1 "2009\-06\-14" "1.0.5" "live\-helper" +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" .SH NAME -lh_config \- create configuration for live\-helper +\fBlh config\fR \- Create config directory .SH SYNOPSIS -\fBlh_config\fR +\fBlh config\fR [\fIlive\-helper options\fR] +.PP +.\" FIXME +\fBlh config\fB .br [\fB\-\-apt\fR apt|aptitude] .br @@ -26,7 +29,7 @@ lh_config \- create configuration for live\-helper .br [\-a|\fB\-\-architecture\fR \fIARCHITECTURE\fR] .br - [\-b|\fB\-\-binary\-images\fR iso|iso-hybrid|net|tar|usb\-hdd] + [\-b|\fB\-\-binary\-images\fR iso|iso\-hybrid|net|tar|usb\-hdd] .br [\fB\-\-binary\-filesystem\fR fat16|fat32|ext2] .br @@ -172,7 +175,7 @@ lh_config \- create configuration for live\-helper .br [\fB\-\-source\fR true|false] .br - [\-s|\fB\-\-source\-images\fR iso|net|tar|usb-hdd] + [\-s|\fB\-\-source\-images\fR iso|net|tar|usb\-hdd] .br [\fB\-\-symlinks\fR true|false] .br @@ -199,23 +202,27 @@ lh_config \- create configuration for live\-helper [\fB\-\-username\fR \fINAME\fR] .br [\fB\-\-win32\-loader true|false] -.PP -\fBlh_config\fR [\fIlive\-helper\ options\fR] +.\" FIXME .SH DESCRIPTION -is a high\-level command (porcelain) of live\-helper, the Debian Live tool suite. It populates the configuration directory for live\-helper. By default, this directory is named 'config' and is created in the current directory where lh_config was executed. +\fBlh config\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite. .PP -\fBAttention:\fR lh_config tries to be smart and sets defaults for some options depending on the setting of other options (e.g. the to be used union filesystem depending on an etch system gets build or not). This means that when generating a new configuration, you should call lh_config only once with all options specified. Calling it several times with only a subset of the options each can result in non working configurations. This is also caused by the fact that lh_config called with one option only changes that option, and leaves everything else as is unless its not defined. However, lh_config does warn about know impossible or likely impossible combinations that would lead to non working live systems. If unsure, remove config/{binary,bootstrap,chroot,common,source} and call lh_config again. +.\" FIXME +\fBlh config\fR populates the configuration directory for live\-helper. By default, this directory is named 'config' and is created in the current directory where \fBlh config\fR was executed. +.PP +Note: Currently \fBlh config\fR tries to be smart and sets defaults for some options depending on the setting of other options (e.g. which linux packages to be used depending on if a lenny system gets build or not). This means that when generating a new configuration, you should call \fBlh config\fR only once with all options specified. Calling it several times with only a subset of the options each can result in non working configurations. This is also caused by the fact that \fBlh config\fR called with one option only changes that option, and leaves everything else as is unless its not defined. However, \fBlh config\fR does warn about know impossible or likely impossible combinations that would lead to non working live systems. If unsure, remove config/{binary,bootstrap,chroot,common,source} and call \fBlh config\fR again. +.\" FIXME .SH OPTIONS -In addition to its specific options, lh_config also understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. -.br +In addition to its specific options \fBlh config\fR understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. +.PP +.\" FIXME .IP "\fB\-\-apt\fR apt|aptitude" 4 -defines if apt-get or aptitude is used to install packages when building the image. When building etch images, this defaults to aptitude. Every other distribution defaults to apt. +defines if apt\-get or aptitude is used to install packages when building the image. When building etch images, this defaults to aptitude. Every other distribution defaults to apt. .IP "\fB\-\-apt\-ftp\-proxy\fR \fIURL\fR" 4 -sets the ftp proxy to be used by apt. By default, this is empty but if the host has the environment variable ftp_proxy set, apt-ftp-proxy gets automatically set to the value of ftp_proxy. +sets the ftp proxy to be used by apt. By default, this is empty but if the host has the environment variable ftp_proxy set, apt\-ftp\-proxy gets automatically set to the value of ftp_proxy. .IP "\fB\-\-apt\-http\-proxy\fR \fIURL\fR" 4 -sets the http proxy to be used by apt. By default, this is empty but if the host has the environment variable http_proxy set, apt-http-proxy gets automatically set to the value of http_proxy. +sets the http proxy to be used by apt. By default, this is empty but if the host has the environment variable http_proxy set, apt\-http\-proxy gets automatically set to the value of http_proxy. .IP "\fB\-\-apt\-pdiffs\fR true|false" 4 defines whetever apt should use incremental package indices feature or not. This is true by default. .IP "\fB\-\-apt\-options\fR \fIOPTION\fR|""\fIOPTIONS\fR""" 4 @@ -223,25 +230,25 @@ defines the default options that will be appended to every apt call that is made .IP "\fB\-\-aptitude\-options\fR \fIOPTION\fR|""\fIOPTIONS\fR""" 4 defines the default options that will be appended to every aptitude call that is made inside chroot during building of the image. By default, this is set to \-\-assume\-yes to allow non-interactive installation of packages. .IP "\fB\-\-apt\-pipeline\fR \fIDEPTH\fR" 4 -sets the depth of the apt/aptitude pipeline. In cases where the remote server is not RFC conforming or buggy (such as Squid 2.0.2) this option can be a value from 0 to 5 indicating how many outstanding requests APT should send. A value of zero MUST be specified if the remote host does not properly linger on TCP connections - otherwise data corruption will occur. Hosts which require this are in violation of RFC 2068. By default, live-helper does not set this option. +sets the depth of the apt/aptitude pipeline. In cases where the remote server is not RFC conforming or buggy (such as Squid 2.0.2) this option can be a value from 0 to 5 indicating how many outstanding requests APT should send. A value of zero MUST be specified if the remote host does not properly linger on TCP connections \- otherwise data corruption will occur. Hosts which require this are in violation of RFC 2068. By default, live\-helper does not set this option. .IP "\fB\-\-apt\-recommends\fR true|false" 4 defines if apt should install recommended packages automatically. By default, this is true except in emdebian mode. .IP "\fB\-\-apt\-secure\fR true|false" 4 defines if apt should check repository signatures. This is true by default. .IP "\-a|\fB\-\-architecture\fR \fIARCHITECTURE\fR" 4 defines the architecture of the to be build image. By default, this is set to the host architecture. Note that you cannot crossbuild for another architecture if your host system is not able to execute binaries for the target architecture natively. For example, building amd64 images on i386 and vice versa is possile if you have a 64bit capable i386 processor and the right kernel. But building powerpc images on an i386 system is not possible. -.IP "\-b|\fB\-\-binary\-images\fR iso|iso-hybrid|net|tar|usb\-hdd" 4 -defines the image type to build. By default this is set to iso to build CD/DVD images, for squeeze and newer it defaults to iso-hybrid. +.IP "\-b|\fB\-\-binary\-images\fR iso|iso\-hybrid|net|tar|usb\-hdd" 4 +defines the image type to build. By default this is set to iso to build CD/DVD images, for squeeze and newer it defaults to iso\-hybrid. .IP "\fB\-\-binary\-filesystem\fR fat16|fat32|ext2" 4 -defines the filesystem to be used in the image type. This only has an effect if the selected binary image type does allow to choose a filesystem. For example, when selection iso the resulting CD/DVD has always the filesystem ISO9660. When building usb-hdd images for usb sticks, this is active. Note that it defaults to fat16 on all architectures except sparc where it defaults to ext2. Also note that if you choose fat16 and your resulting binary image gets bigger than 2GB, the binary filesystem automatically gets switched to fat32. +defines the filesystem to be used in the image type. This only has an effect if the selected binary image type does allow to choose a filesystem. For example, when selection iso the resulting CD/DVD has always the filesystem ISO9660. When building usb\-hdd images for usb sticks, this is active. Note that it defaults to fat16 on all architectures except sparc where it defaults to ext2. Also note that if you choose fat16 and your resulting binary image gets bigger than 2GB, the binary filesystem automatically gets switched to fat32. .IP "\fB\-\-binary\-indices\fR true|false|none" 4 defines if the resulting images should have binary indices or not and defaults to true. If set to none, no indices are included at all. .IP "\fB\-\-bootappend\-install\fR \fIPARAMETER\fR|""\fIPARAMETERS\fR""" 4 -sets boot parameters specific to debian-installer, if included. +sets boot parameters specific to debian\-installer, if included. .IP "\fB\-\-bootappend\-live\fR \fIPARAMETER\fR|""\fIPARAMETERS\fR""" 4 -sets boot parameters specific to debian-live. A complete list of boot parameters can be found, for etch, in the manpage of casper, for all other distributions in the manpage of live-initramfs. On the images, a list of all parameters (without comments) is included in the /parameters.txt. +sets boot parameters specific to debian\-live. A complete list of boot parameters can be found, for etch, in the manpage of casper, for all other distributions in the manpage of live\-initramfs. On the images, a list of all parameters (without comments) is included in the /parameters.txt. .IP "\fB\-\-bootloader\fR grub|syslinux|yaboot" 4 -defines which bootloader is beeing used in the generated image. This has only an effect if the selected binary image type does allow to choose the bootloader. For example, if you build a iso, always syslinux (or more precise, isolinux) is being used. Also note that some combinations of binary images types and bootloaders may be possible but live\-helper does not support them yet. lh_config will fail to create such a not yet supported configuration and give a explanation about it. For usb-hdd images on amd64 and i386, the default is syslinux. yaboot is only used on powerpc. +defines which bootloader is beeing used in the generated image. This has only an effect if the selected binary image type does allow to choose the bootloader. For example, if you build a iso, always syslinux (or more precise, isolinux) is being used. Also note that some combinations of binary images types and bootloaders may be possible but live\-helper does not support them yet. \fBlh config\fR will fail to create such a not yet supported configuration and give a explanation about it. For usb\-hdd images on amd64 and i386, the default is syslinux. yaboot is only used on powerpc. .IP "\fB\-\-bootstrap\fR cdebootstrap|cdebootstrap-static|debootstrap|copy" 4 defines which program is used to bootstrap the debian chroot, default is debootstrap. Note that if you set the bootstrap program to copy, then your host system is copied. This can be useful if you want to convert/clone your existing host system into a live system, however, make sure you do have enough free space as this can, depending on your host system, get quite big. .IP "\fB\-\-bootstrap\-config\fR \fIFILE\fR" 4 @@ -249,7 +256,7 @@ sets a custom configuration file for the boostrap programm of choice and is empt .IP "\-f|\fB\-\-bootstrap\-flavour\fR minimal|standard" 4 defines if the bootstrap program should bootstrap the standard system (all packages of priority required and important, which is the default) or a minimal system (only packages of priority required, plus apt). .IP "\fB\-\-bootstrap\-keyring\fR \fIPACKAGE\fR" 4 -sets the archive keyring package to be used. Default is debian-archive-keyring. +sets the archive keyring package to be used. Default is debian\-archive\-keyring. .IP "\fB\-\-cache\fR true|false" 4 defines globally if any cache should be used at all. Different caches can be controled through the their own options. .IP "\fB\-\-cache\-indices\fR true|false" 4 @@ -259,9 +266,9 @@ defines if downloaded packages files should be cached which is true by default. .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 md5|sha1|sha256|none" 4 -defines if the binary image should contain a file called md5sums.txt, sha1sums.txt and/or sha256sums.txt. These lists all files on the image together with their checksums. This in turn can be used by live-initramfs' built-in integrity-check to verify the medium if specified at boot prompt. In general, this should not be false and is an important feature of live system released to the public. However, during development of very big images it can save some time by not calculating the checksums. +defines if the binary image should contain a file called md5sums.txt, sha1sums.txt and/or sha256sums.txt. These lists all files on the image together with their checksums. This in turn can be used by live\-initramfs' built\-in integrity\-check to verify the medium if specified at boot prompt. In general, this should not be false and is an important feature of live system released to the public. However, during development of very big images it can save some time by not calculating the checksums. .IP "\fB\-\-chroot\-build\fR true|false" 4 -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. +defines whetever live\-helper should use the tools from within the chroot to build the binary image or not by using and including the host systems tools. This is a very dangerous option, using the tools of the host system can lead to tainted and even non-bootable images if the host systems version of the required tools (mainly these are the bootloaders such as syslinux, grub and yaboot, and the auxilliary tools such as dosfstools, genisoimage, squashfs-tools and others) do not \fBexactely\fR match what is present at build-time in the target distribution. Never do disable this option unless you are \fBexactely\fR sure what you are doing and have \fBcompletely\fI understood its consequences. .IP "\fB\-\-chroot\-filesystem\fR ext2|ext3|squashfs|plain|jffs2" 4 defines which filesystem type should be used for the root filesystem image. If you use plain, then no filesystem image is created and the root filesystem content is copied on the binary image filesystem as flat files. Depending on what binary filesystem you have choosen, it may not be possible to build with a plain root filesystem, e.g. fat16/fat32 and plain don't work as linux does not support to run on them. .IP "\fB\-\-clean\fR" 4 @@ -275,7 +282,7 @@ defines if warnings of debconf should be displayed or not. Warnings from debconf .IP "\fB\-\-debconf\-priority\fR low|medium|high|critical" 4 defines what value the debconf priority shoul dbe set to inside the chroot. By default, it is set to critical, which means that almost no questions are displayed. Note that this only has an effect if you use any debconf frontend different from noninteractive. .IP "\fB\-\-debian\-installer\fR true|cdrom|netinst|netboot|businesscard|live|false" 4 -defines which type, if any, of the debian\-installer should be included in the resulting binary image. By default, no installer is included. All available flavours except live are the identical configurations used on the installer media produced by regular debian\-cd. When live is choosen, the live\-installer udeb is included so that debian\-installer will behave different than usual - instead of installing the debian system from packages from the medium or the network, it installs the live system to the disk. +defines which type, if any, of the debian\-installer should be included in the resulting binary image. By default, no installer is included. All available flavours except live are the identical configurations used on the installer media produced by regular debian\-cd. When live is choosen, the live\-installer udeb is included so that debian\-installer will behave different than usual \- instead of installing the debian system from packages from the medium or the network, it installs the live system to the disk. .IP "\fB\-\-debian\-installer\-distribution\fR daily|\fICODENAME\fR" 4 defines the distribution where the debian\-installer files should be taken out from. Normally, this should be set to the same distribution as the live system. However, some times, one wants to use a newer or even daily built installer. .IP "\fB\-\-debian\-installer\-preseedfile\fR \fIFILE\fR|\fIURL\fR" 4 @@ -295,13 +302,13 @@ defines the name of an optional to be included splash screen graphic for the gru .IP "\fB\-\-gzip\-options\fR \fIOPTION\fR|""\fIOPTIONS\fR""" 4 defines the default options that will be appended to (almost) every gzip call during the building of the image. By default, this is set to \-\-best to use highest (but slowest) compression. Dynamically, if the host system supports it, also \-\-rsyncable is added. .IP "\fB\-\-hooks\fR \fIFILE\fR" 4 -defines which hooks available in /usr/share/live-helper/examples/hooks should be activated. Normally, there are no hooks executed. Make sure you know and understood the hook before you enable it. +defines which hooks available in /usr/share/live\-helper/examples/hooks should be activated. Normally, there are no hooks executed. Make sure you know and understood the hook before you enable it. .IP "\fB\-\-hostname\fR \fINAME\fR" 4 sets the hostname of the live system. .IP "\fB\-\-ignore\-system\-defaults\fR" 4 -lh_config by default reads system defaults from /etc/default/live-helper when generating a new live system config directory. This is useful if you want to set global settings, such as mirror locations, and don't want to specify them all of the time. +\fBlh config\fR by default reads system defaults from /etc/default/live\-helper when generating a new live system config directory. This is useful if you want to set global settings, such as mirror locations, and don't want to specify them all of the time. .IP "\fB\-\-includes\fR \fIPATH\fR" 4 -sets the path to the includes that live\-helper is going to use, e.g. additional minimal documentation that you want to have on all live systems. By default, this is set to /usr/share/live-helper/includes/. +sets the path to the includes that live\-helper is going to use, e.g. additional minimal documentation that you want to have on all live systems. By default, this is set to /usr/share/live\-helper/includes/. .IP "\fB\-\-initramfs\fR auto|live\-initramfs|casper" 4 sets the name of package that contains the live system specific initramfs modification. By default, auto is used, which means that at build time of the image rather than on configuration time, the value will be expanded to casper when building etch systems and to live\-initramfs for all other systems. .IP "\fB\-\-interactive\fR shell" 4 @@ -309,21 +316,21 @@ defines if after the chroot stage and before the beginning of the binary stage, .IP "\fB\-\-iso\-application\fR \fINAME\fR" 4 sets the APPLICATION field in the header of a resulting CD/DVD image and defaults to "Debian Live" in debian mode, and to "Emdebian Live" in emdebian mode, and "Ubuntu Live" in ubuntu mode. .IP "\fB\-\-iso\-preparer\fR \fINAME\fR" 4 -sets the PREPARER field in the header of a resulting CD/DVD image. By default this is set to "live-helper \fIVERSION\fR; http://packages.qa.debian.org/live-helper", whereas VERSION is expanded to the version of live-helper that was used to build the image. +sets the PREPARER field in the header of a resulting CD/DVD image. By default this is set to "live\-helper \fIVERSION\fR; http://packages.qa.debian.org/live\-helper", whereas VERSION is expanded to the version of live\-helper that was used to build the image. .IP "\fB\-\-iso\-publisher\fR \fINAME\fR" 4 -sets the PUBLISHED field in the header of a resulting CD/DVD image. By default, this is set to 'Debian Live project; http:/live.debian.net/; debian-live@lists.debian.org'. Remember to change this to the appropriate values at latest when you distributing custom and unofficial images. +sets the PUBLISHED field in the header of a resulting CD/DVD image. By default, this is set to 'Debian Live project; http:/live.debian.net/; debian\-live@lists.debian.org'. Remember to change this to the appropriate values at latest when you distributing custom and unofficial images. .IP "\fB\-\-iso\-volume\fR \fINAME\fR" 4 -sets the VOLUME field in the header of a resulting CD/DVD and defaults to '(\fIMODE\fR) (\fIDISTRIBUTION\fR) (\fIDATE\fR)' whereas MODE is expanded to the name of the mode in use, DISTRIBUTION the distribution name, and DATE with the current date and time of the generation. When running in debian-release mode however, it will instead default to 'Debian (\fIVERSION\fR) (\fIARCHITECTURE\fR) live' where VERSION becomes the numerical version of the release being built and ARCHITECTURE becomes the name of the architecture. +sets the VOLUME field in the header of a resulting CD/DVD and defaults to '(\fIMODE\fR) (\fIDISTRIBUTION\fR) (\fIDATE\fR)' whereas MODE is expanded to the name of the mode in use, DISTRIBUTION the distribution name, and DATE with the current date and time of the generation. When running in debian\-release mode however, it will instead default to 'Debian (\fIVERSION\fR) (\fIARCHITECTURE\fR) live' where VERSION becomes the numerical version of the release being built and ARCHITECTURE becomes the name of the architecture. .IP "\fB\-\-jffs2\-eraseblock\fR \fISIZE\fR" 4 sets the eraseblock size for a JFFS2 (Second Journalling Flash File System) filesystem. The default is 64 KiB. If you use an erase block size different than the erase block size of the target MTD device, JFFS2 may not perform optimally. If the SIZE specified is below 4096, the units are assumed to be KiB. .IP "\fB\-\-keyring\-packages\fR \fIPACKAGE\fI|""\fIPACKAGES\fR""" 4 -sets the keyring package or additional keyring packages. By default this is set to debian-archive-keyring. +sets the keyring package or additional keyring packages. By default this is set to debian\-archive\-keyring. .IP "\-l|\fB\-\-language\fR \fILANGUAGE\fR" 4 sets the language of a live system by installing l10n related packages and enables generation of the correct locales through automatically setting the right boot parameters. .IP "\-k|\fB\-\-linux\-flavours\fR \fIFLAVOUR\fR|""\fIFLAVOURS\fR""" 4 sets the kernel flavours to be installed. Note that in case you specify more than that the first will be configured the default kernel that gets booted. .IP "\fB\-\-linux\-packages\fR ""\fIPACKAGES\fR""" 4 -sets the internal name of the kernel packages naming scheme. If you use debian kernel packages, you will not have to adjust it. If you decide to use custom kernel packages that do not follow the debian naming scheme, remember to set this option to the stub of the packages only (for debian this is linux-image-2.6), so that \fISTUB\fR-\fIFLAVOUR\fR results in a valid package name (for debian e.g. linux-image-2.6-486). Preferably you use the meta package name, if any, for the stub, so that your configuration is ABI independent. Also don't forget that you have to include stubs of the binary modules packages for unionfs or aufs, and squashfs if you built them out-of-tree. +sets the internal name of the kernel packages naming scheme. If you use debian kernel packages, you will not have to adjust it. If you decide to use custom kernel packages that do not follow the debian naming scheme, remember to set this option to the stub of the packages only (for debian this is linux\-image\-2.6), so that \fISTUB\fR-\fIFLAVOUR\fR results in a valid package name (for debian e.g. linux\-image\-2.6\-486). Preferably you use the meta package name, if any, for the stub, so that your configuration is ABI independent. Also don't forget that you have to include stubs of the binary modules packages for unionfs or aufs, and squashfs if you built them out-of-tree. .IP "\fB\-\-losetup\fR losetup|losetup.orig" 4 sets the filename of the losetup binary from the host system that should be used. This is autodetected and does generally not need any customization. .IP "\fB\-\-memtest\fR memtest86+|memtest86|none" 4 @@ -347,13 +354,13 @@ defines the filesystem that will be configured in the bootloader configuration f .IP "\fB\-\-net\-root\-mountoptions\fR \fIOPTIONS\fR" 4 sets additional options for mounting the root filesystem in netboot images and is by default empty. .IP "\fB\-\-net\-root\-path\fR \fIPATH\fR" 4 -sets the file path that will be configured in the bootloader configuration for your netboot image. This defaults to /srv/debian-live in debian mode and to /srv/emebian-live when being in emdebian mode, and /srv/ubuntu-live when in ubuntu mode. +sets the file path that will be configured in the bootloader configuration for your netboot image. This defaults to /srv/debian\-live in debian mode and to /srv/emebian-live when being in emdebian mode, and /srv/ubuntu-live when in ubuntu mode. .IP "\fB\-\-net\-root\-server\fR \fIIP\fR|\fIHOSTNAME\fR" 4 sets the IP or hostname that will be configured in the bootloader configuration for the root filesystem of your netboot image. This defaults to 192.168.1.1. .IP "\fB\-\-net\-cow\-filesystem\fR nfs|cfs" 4 -defines the filesystem type for the copy-on-write layer and defaults to nfs. +defines the filesystem type for the copy\-on\-write layer and defaults to nfs. .IP "\fB\-\-net\-cow\-mountoptions\fR \fIOPTIONS\fR" 4 -sets additional options for mounting the copy-on-write layer in netboot images and is by default empty. +sets additional options for mounting the copy\-on\-write layer in netboot images and is by default empty. .IP "\fB\-\-net\-cow\-path\fR \fIPATH\fR" 4 defines the path to client writable filesystem. Anywhere that \fIclient_mac_address\fR is specified in the path live\-initramfs will substitute the MAC address of the client delimited with hyphens. .PP @@ -364,26 +371,26 @@ Example: .br /export/hosts/00\-16\-D3\-33\-92\-E8 .IP "\fB\-\-net\-cow\-server\fR \fIIP\fR|\fIHOSTNAME\fR" 4 -sets the IP or hostname that will be configured in the bootloader configuration for the copy-on-write filesystem of your netboot image and is by default empty. +sets the IP or hostname that will be configured in the bootloader configuration for the copy\-on\-write filesystem of your netboot image and is by default empty. .IP "\fB\-\-net\-tarball\fR bzip2|gzip|tar|none" 4 defines the format of the netboot image. Choosing tar results in a not compressed tarball, bzip2 and gzip in a bzip2 resp. gzip compressed tarball. Choosing none leads to no tarball at all, the plain binary directory is considered the output in this case. Default is gzip. .IP "\-p|\fB\-\-packages\-lists\fR \fILIST\fR|""\fILISTS\fR""" 4 -defines which lists available in /usr/share/live-helper/lists should be used. By default, this is set to standard. Note that in case you have local packages lists, you don't need to list them here. Putting them into config/chroot_local-packageslists is enough (the filename needs to have the .list suffix though). +defines which lists available in /usr/share/live\-helper/lists should be used. By default, this is set to standard. Note that in case you have local packages lists, you don't need to list them here. Putting them into config/chroot_local-packageslists is enough (the filename needs to have the .list suffix though). .IP "\fB\-\-packages\fR \fIPACKAGE\fR|""\fIPACKAGES\fR""" 4 defines one or more packages to be installed in the live system. This is a quick and convenient place to add a few packages when building an image (limited by the max length of shell). Packages that should be permanently installed should be put into a local packages list. .IP "\fB\-r, \-\-repositories\fR \fIREPOSITORY\fR|""\fIREPOSITORIES\fR""" 4 -enables one of available third-party repository configurations in /usr/share/live-helper/repositories. +enables one of available third-party repository configurations in /usr/share/live\-helper/repositories. .IP "\fB\-\-root-command\fR sudo" 4 -controls if live-helper should use sudo internally to build the live image. Note that this is not well tested and that you should, when relying on sudo, call the individual live\-helper command with sudo itself. +controls if live\-helper should use sudo internally to build the live image. Note that this is not well tested and that you should, when relying on sudo, call the individual live\-helper command with sudo itself. .IP "\fB\-\-use-fakeroot\fR true|false" 4 -controls if live-helper should utilize fakeroot and fakechroot to try and avoid requiring root privillages where possible. By default, this option is false. +controls if live\-helper should utilize fakeroot and fakechroot to try and avoid requiring root privillages where possible. By default, this option is false. .IP "\fB\-\-archive\-areas\fR \fIARCHIVE_AREA\fR|""\fIARCHIVE_AREAS\fR""" 4 -defines which package archive areas of a debian packages archive should be used for configured debian package mirrors. By default, this is set to main. Remember to check the licenses of each packages with respect to their redistributability in your juristiction when enabling contrib or non-free with this mechanism. +defines which package archive areas of a debian packages archive should be used for configured debian package mirrors. By default, this is set to main. Remember to check the licenses of each packages with respect to their redistributability in your juristiction when enabling contrib or non\-free with this mechanism. .IP "\fB\-\-security\fR true|false" 4 defines if the security repositories specified in the security mirror options should be used or not. .IP "\fB\-\-source\fR true|false" 4 defines if a corresponding source image to the binary image should be build. By default this is false because most people do not require this and would require to download quite a few source packages. However, once you start distributing your live image, you should make sure you build it with a source image alongside. -.IP "\-s|\fB\-\-source\-images\fR iso|net|tar|usb-hdd" 4 +.IP "\-s|\fB\-\-source\-images\fR iso|net|tar|usb\-hdd" 4 defines the image type for the source image. Default is tar. .IP "\fB\-\-symlinks\fR true|false" 4 defines if the symlink hack should be true or false. The symlink hack converts all absolute symlinks to relative ones. By default this is false and in general there is no need or gain to enable it. If you are in a special situation that requires this, you will know. @@ -394,31 +401,36 @@ defines the timeout the syslinux bootloader should wait for input from the user .IP "\fB\-\-syslinux\-menu\fR true|false" 4 defines if syslinux should be make use of the vgamenu capabilities or not. .IP "\fB\-\-sysvinit\fR true|false" 4 -defines it the sysvinit hack should be true or false. The sysvinit hack disables all non-essential services from starting up at bootup in order to reduce overall boottime. By default this is false and in general there you don't want to enable it. +defines if the sysvinit hack should be true or false. The sysvinit hack disables all non\-essential services from starting up at bootup in order to reduce overall boottime. By default this is false and in general there you don't want to enable it. .IP "\fB\-\-tasksel\fR aptitude|tasksel" 4 selects which program is used to install tasks. By default, this is set to tasksel. .IP "\fB\-\-tasks\fR \fITASK\fR|""\fITASKS\fR""" 4 defines one or more package tasks to be installed in the live system. This is a quick and convenient way to get a reasonable default selection of packages suitable for most users when building an image, but it results in quite big images. If you want to have finer grained package selections, local packages lists should be used instead. .IP "\fB\-\-templates\fR \fIPATH\fR" 4 -sets the path to the templates that live\-helper is going to use, e.g. for bootloaders. By default, this is set to /usr/share/live-helper/templates/. +sets the path to the templates that live\-helper is going to use, e.g. for bootloaders. By default, this is set to /usr/share/live\-helper/templates/. .IP "\fB\-\-virtual\-root\-filesystem\fR ext3" 4 -defines what filesystem to format the root filesystem when building virtual-hdd images. +defines what filesystem to format the root filesystem when building virtual\-hdd images. .IP "\fB\-\-virtual\-root\-size\fR MB" 4 -defines what size the virtual-hdd image should be. Note that although the default is set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the files are created as sparse files. +defines what size the virtual\-hdd image should be. Note that although the default is set to 10000 (= 10GB), it will not need 10GB space on your harddisk as the files are created as sparse files. .IP "\fB\-\-exposed\-root\fR true|false" 4 defines whether to expose the root filesystem as read only and not covered by the union filesystem. This has useful implications for certain speciality setups such as LTSP. By default, this option is false. .IP "\fB\-\-username\fR \fINAME\fR" 4 sets the name of the account of the default user in the live system. .IP "\fB\-\-win32\-loader true|false" 4 defines if win32\-loader should be included in the binary image or not. +.\" FIXME .SH ENVIRONMENT +.\" FIXME All command line switches can also be specified through the corresponding environment variable. Environment variables are name LH_FOO, means, e.g. \-\-apt\-ftp\-proxy becomes LH_APT_FTP_PROXY. However, this generally should not be used. +.\" FIXME .SH FILES -.I /etc/default/live-helper -.PP -An optional, global configuration file for lh_config variables. It is useful to specify a few system wide defaults, like LH_MIRROR_BOOTSTRAP. This feature can be false by specifying the \fB\-\-ignore\-system\-defaults\fR option. +.\" FIXME +.IP "\fBauto/config\fR" 4 +.IP "\fB/etc/default/live\-helper\fR" 4 +An optional, global configuration file for \fBlh config\fR variables. It is useful to specify a few system wide defaults, like LH_MIRROR_BOOTSTRAP. This feature can be false by specifying the \fB\-\-ignore\-system\-defaults\fR option. +.\" FIXME .SH SEE ALSO \fIlive\-helper\fR(7) @@ -426,10 +438,10 @@ An optional, global configuration file for lh_config variables. It is useful to 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>. +More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. .SH BUGS -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>. +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian\-live@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/en/lh_local.1 b/manpages/en/lh_local.1 new file mode 100644 index 000000000..7d4fcb767 --- /dev/null +++ b/manpages/en/lh_local.1 @@ -0,0 +1,32 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh_local\fR \- wrapper for local live\-helper programs + +.SH SYNOPSIS +\fBlh local\fR [\fIlive\-helper\ options\fR] + +.SH DESCRIPTION +\fBlh local\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh local\fR 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 FILES +.IP "\fBnone\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_source.1 b/manpages/en/lh_source.1 new file mode 100644 index 000000000..6a1db92d9 --- /dev/null +++ b/manpages/en/lh_source.1 @@ -0,0 +1,32 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh source\fR \- Complete the source stage + +.SH SYNOPSIS +\fBlh source\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh source\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +\fBlh source\fR calls all necessary live\-helper programs in the correct order to complete the source stage. + +.SH OPTIONS +\fBlh source\fR 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 FILES +.IP "\fBnone\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_source_checksums.1 b/manpages/en/lh_source_checksums.1 new file mode 100644 index 000000000..b43ec090b --- /dev/null +++ b/manpages/en/lh_source_checksums.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_checksums\fR \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_checksums\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh sources_checksums\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh sources_checksums\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_source_debian-live.1 b/manpages/en/lh_source_debian-live.1 new file mode 100644 index 000000000..7fc68c3f2 --- /dev/null +++ b/manpages/en/lh_source_debian-live.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_debian\-live\fR \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_debian\-live\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh sources_debian\-live\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh sources_debian\-live\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_source_debian.1 b/manpages/en/lh_source_debian.1 new file mode 100644 index 000000000..2e6c2e1b9 --- /dev/null +++ b/manpages/en/lh_source_debian.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_debian\fR \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_debian\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh sources_debian\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh sources_debian\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_source_disk.1 b/manpages/en/lh_source_disk.1 new file mode 100644 index 000000000..9d0ac01d8 --- /dev/null +++ b/manpages/en/lh_source_disk.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_disk\fR \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_disk\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh sources_disk\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh sources_disk\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_source_iso.1 b/manpages/en/lh_source_iso.1 new file mode 100644 index 000000000..081eb9f6a --- /dev/null +++ b/manpages/en/lh_source_iso.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_iso\fR \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_iso\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh sources_iso\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh sources_iso\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_source_net.1 b/manpages/en/lh_source_net.1 new file mode 100644 index 000000000..6dc6cac06 --- /dev/null +++ b/manpages/en/lh_source_net.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_net\fR \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_net\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh sources_net\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh sources_net\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_source_tar.1 b/manpages/en/lh_source_tar.1 new file mode 100644 index 000000000..6534321a9 --- /dev/null +++ b/manpages/en/lh_source_tar.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_tar\fR \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_tar\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh sources_tar\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh sources_tar\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_source_usb.1 b/manpages/en/lh_source_usb.1 new file mode 100644 index 000000000..91c74acf7 --- /dev/null +++ b/manpages/en/lh_source_usb.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_usb\fR \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_usb\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh sources_usb\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh sources_usb\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_source_virtual-hdd.1 b/manpages/en/lh_source_virtual-hdd.1 new file mode 100644 index 000000000..ca0778e24 --- /dev/null +++ b/manpages/en/lh_source_virtual-hdd.1 @@ -0,0 +1,33 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh sources_virtual\-hdd\fR \- Complete the sources stage + +.SH SYNOPSIS +\fBlh sources_virtual\-hdd\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh sources_virtual\-hdd\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME + +.SH OPTIONS +\fBlh sources_virtual\-hdd\fR 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 FILES +.\" FIXME +.IP "\fBn/a\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/lh_testroot.1 b/manpages/en/lh_testroot.1 new file mode 100644 index 000000000..49643fc8a --- /dev/null +++ b/manpages/en/lh_testroot.1 @@ -0,0 +1,36 @@ +.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project" + +.SH NAME +\fBlh testroot\fR \- Ensure that a system is built as root + +.SH SYNOPSIS +\fBlh testroot\fR [\fIlive\-helper options\fR] + +.SH DESCRIPTION +\fBlh testroot\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite. +.PP +.\" FIXME +\fBlh testroot\fR simply checks to see if you are root. If not, it exits with an error. Debian Live images must currently be built as real root. +.PP +Note: Support for using \fIfakeroot\fR(1) and \fIsudo\fR(8) internally in live\-helper itself is still experimental, however, calling a helper yourself with sudo is safe. +.\" FIXME + +.SH OPTIONS +\fBlh testroot\fR 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 FILES +.IP "\fBnone\fR" 4 + +.SH SEE ALSO +\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 on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. + +.SH BUGS +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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/en/live-helper.7 similarity index 78% rename from manpages/live-helper.en.7 rename to manpages/en/live-helper.7 index 32365ddc3..ff82211f5 100644 --- a/manpages/live-helper.en.7 +++ b/manpages/en/live-helper.7 @@ -1,30 +1,31 @@ -.TH LIVE\-HELPER 7 "2009\-01\-23" "1.0.2" "live\-helper" +.TH LIVE\-HELPER 7 2010\-05\-08 2.0~a11 "Debian Live Project" .SH NAME -live\-helper \- the Debian Live tool suite +\fBlive\-helper\fR \- the Debian Live tool suite .SH SYNOPSIS +.\" FIXME \fBlh \fR\fICOMMAND\fR [\fB\-h|\-\-help\fR] [\fB\-u|\-\-usage\fR] [\fB\-v|\-\-version\fR] [\fB\-\-breakpoints\fR] [\fB\-\-conffile\fR] [\fB\-\-debug\fR] [\fB\-\-force\fR] [\fB\-\-quiet\fR] [\fB\-\-verbose\fR] -.PP -or -.PP -\fBlh_\fR\fICOMMAND\fR [\fB\-h|\-\-help\fR] [\fB\-u|\-\-usage\fR] [\fB\-v|\-\-version\fR] [\fB\-\-breakpoints\fR] [\fB\-\-conffile\fR] [\fB\-\-debug\fR] [\fB\-\-force\fR] [\fB\-\-quiet\fR] [\fB\-\-verbose\fR] +.\" FIXME .SH DESCRIPTION -live\-helper is a set of scripts to build Debian Live system images. The idea behind live-helper is a framework that uses a configuration directory to completely automate and customize all aspects of building a Live image. +.\" FIXME +live\-helper is a set of scripts to build Debian Live system images. The idea behind live\-helper is a tool suite that uses a configuration directory to completely automate and customize all aspects of building a Live image. .PP The \fICOMMAND\fR is a name of a live\-helper command (see below). .PP More documentation about how to use live\-helper is available in the individual manpages for each helper and in the manual at <\fIhttp://live.debian.net/manual/\fR>. +.\" FIXME .SH OPTIONS +.\" FIXME .SS Shared live\-helper options The following command line options are supported by all live\-helper programs. -.IP "\fB-h, --help\fR" 4 +.IP "\fB-h, \-\-help\fR" 4 display help and exit. -.IP "\fB-u, --usage\fR" 4 +.IP "\fB-u, \-\-usage\fR" 4 show usage and exit. -.IP "\fB-v, --version\fR" 4 +.IP "\fB-v, \-\-version\fR" 4 output version information and exit. .SS Common live\-helper options The following command line options are supported by most live\-helper programs. See the man page of each program for a complete explanation of what each option does. @@ -40,16 +41,18 @@ force helper execution, even if stage file exists. be quiet. .IP "\fB\-\-verbose\fR" 4 be verbose. -.PP -If a program's name starts with "lh_", and the program is not on the list below list, then it is not part of the live\-helper package, but it should still work like the other programs described on this page. +.\" FIXME .SH LIVE\-HELPER COMMANDS +.\" FIXME We divide live\-helper into high level ("porcelain") commands and low level ("plumbing") commands. .PP Here is the complete list of all available live\-helper commands. See their man pages for additional documentation. +.\" FIXME .SH HIGH\-LEVEL COMMANDS (PORCELAIN) +.\" FIXME We separate the porcelain commands into the main commands and some ancillary user utilities. .SS Main porcelain commands .IP "\fBlh_config\fR(1)" 4 @@ -73,11 +76,13 @@ alias for all stages helper for using a local live\-helper .IP "\fBlh_testroot\fR(1)" 4 ensure that a system is built as root +.\" FIXME -.SH LOW-LEVEL COMMANDS (PLUMBING) +.SH LOW\-LEVEL COMMANDS (PLUMBING) +.\" FIXME The actual work of live\-helper is implemented in the low-level commands, called plumbing. They are not supposed to be used by end users, they should stick with porcelains as they ensure that all the different plumbing commands are executed in the right order. However, if you intend to reuse live\-helper commands in your own scripts, then the plumbings might be of interest for you. .PP -Note that the interface (set of options and the semantics) to these low-level commands are meant to be a lot more stable than Porcelain level commands. The interface to Porcelain commands on the other hand are subject to change in order to improve the end user experience. +Note that the interface (set of options and the semantics) to these low\-level commands are meant to be a lot more stable than Porcelain level commands. The interface to Porcelain commands on the other hand are subject to change in order to improve the end user experience. .SS Bootstrap commands .IP "\fBlh_bootstrap_cache\fR(1)" 4 cache bootstrap stage @@ -106,23 +111,23 @@ execute hooks in chroot manage /bin/hostname .IP "\fBlh_chroot_hosts\fR(1)" 4 manage /etc/hosts -.IP "\fBlh_chroot_install-packages\fR(1)" 4 +.IP "\fBlh_chroot_install\-packages\fR(1)" 4 install queued packages into chroot .IP "\fBlh_chroot_interactive\fR(1)" 4 make build interactive -.IP "\fBlh_chroot_linux-image\fR(1)" 4 -manage /etc/kernel-img.conf -.IP "\fBlh_chroot_local-hooks\fR(1)" 4 +.IP "\fBlh_chroot_linux\-image\fR(1)" 4 +manage /etc/kernel\-img.conf +.IP "\fBlh_chroot_local\-hooks\fR(1)" 4 execute local hooks in chroot -.IP "\fBlh_chroot_local-includes\fR(1)" 4 +.IP "\fBlh_chroot_local\-includes\fR(1)" 4 copy local files into chroot .IP "\fBlh_chroot_localization\fR(1)" 4 install localization packages into chroot -.IP "\fBlh_chroot_local-packages\fR(1)" 4 +.IP "\fBlh_chroot_local\-packages\fR(1)" 4 queue install of local packages into chroot -.IP "\fBlh_chroot_local-patches\fR(1)" 4 +.IP "\fBlh_chroot_local\-patches\fR(1)" 4 apply local patches against chroot -.IP "\fBlh_chroot_local-preseed\fR(1)" 4 +.IP "\fBlh_chroot_local\-preseed\fR(1)" 4 use debconf local preseeding file .IP "\fBlh_chroot_packages\fR(1)" 4 queue install of packages into chroot @@ -144,15 +149,15 @@ convert symlinks mount /sys .IP "\fBlh_chroot_sysvinit\fR(1)" 4 configure sysvinit -.IP "\fBlh_chroot_sysv-rc\fR(1)" 4 -manage /usr/sbin/policy-rc.d +.IP "\fBlh_chroot_sysv\-rc\fR(1)" 4 +manage /usr/sbin/policy\-rc.d .IP "\fBlh_chroot_tasks\fR(1)" 4 install tasks into chroot .SS Binary commands .IP "\fBlh_binary_chroot\fR(1)" 4 copy chroot into chroot -.IP "\fBlh_binary_debian-installer\fR(1)" 4 -install debian-installer into binary +.IP "\fBlh_binary_debian\-installer\fR(1)" 4 +install debian\-installer into binary .IP "\fBlh_binary_disk\fR(1)" 4 install disk information into binary .IP "\fBlh_binary_encryption\fR(1)" 4 @@ -165,13 +170,13 @@ installs grub2 into binary copy files into binary .IP "\fBlh_binary_iso\fR(1)" 4 build iso binary image -.IP "\fBlh_binary_linux-image\fR(1)" 4 -install linux-image into binary -.IP "\fBlh_binary_local-hooks\fR(1)" 4 +.IP "\fBlh_binary_linux\-image\fR(1)" 4 +install linux\-image into binary +.IP "\fBlh_binary_local\-hooks\fR(1)" 4 execute local hooks in binary -.IP "\fBlh_binary_local-includes\fR(1)" 4 +.IP "\fBlh_binary_local\-includes\fR(1)" 4 copy files into binary -.IP "\fBlh_binary_local-packageslists\fR(1)" 4 +.IP "\fBlh_binary_local\-packageslists\fR(1)" 4 install local packages lists into binary .IP "\fBlh_binary_manifest\fR(1)" 4 create manifest @@ -190,18 +195,18 @@ installs syslinux into binary .IP "\fBlh_binary_tar\fR(1)" 4 build harddisk binary image .IP "\fBlh_binary_usb\fR(1)" 4 -build binary usb-hdd image -.IP "\fBlh_binary_virtual-hdd\fR(1)" 4 -build binary virtual-hdd image -.IP "\fBlh_binary_win32-loader\fR(1)" 4 -installs win32-loader into binary +build binary usb\-hdd image +.IP "\fBlh_binary_virtual\-hdd\fR(1)" 4 +build binary virtual\-hdd image +.IP "\fBlh_binary_win32\-loader\fR(1)" 4 +installs win32\-loader into binary .IP "\fBlh_binary_yaboot\fR(1)" 4 installs yaboot into binary .SS Source commands .IP "\fBlh_source_debian\fR(1)" 4 download sources -.IP "\fBlh_source_debian-live\fR(1)" 4 -copy debian-live config into source +.IP "\fBlh_source_debian\-live\fR(1)" 4 +copy debian\-live config into source .IP "\fBlh_source_disk\fR(1)" 4 install disk information into source .IP "\fBlh_source_iso\fR(1)" 4 @@ -213,11 +218,13 @@ build source net image .IP "\fBlh_source_tar\fR(1)" 4 build source tarball .IP "\fBlh_source_usb\fR(1)" 4 -build source usb-hdd image -.IP "\fBlh_source_virtual-hdd\fR(1)" 4 -build source virtual-hdd image +build source usb\-hdd image +.IP "\fBlh_source_virtual\-hdd\fR(1)" 4 +build source virtual\-hdd image +.\" FIXME .SH CONFIG FILES +.\" FIXME Many live\-helper commands make use of files in the \fIconfig/\fR directory to control what they do. Besides the common \fIconfig/common\fR, which is used by all live\-helper commands, some additional files can be used to configure the behavior of specific live\-helper commands. These files are typically named config/stage or config/stage_helper (where "stage" of course, is replaced with the name of the stage that they belong to, and "helper" with the name of the helper). .PP For example, lh_bootstrap_debootstrap uses files named config/bootstrap and config/bootstrap_debootstrap to read the options it will use. See the man pages of individual commands for details about the names and formats of the files they use. Generally, these files contain variables with values assigned, one variable per line. Some programs in live\-helper use pairs of values or slightly more complicated variable assignments. @@ -227,15 +234,23 @@ Note that live\-helper will respect environment variables which are present in t In some rare cases, you may want to have different versions of these files for different architectures or distributions. If files named config/stage.arch or config/stage_helper.arch, and config/stage.dist or config/stage_helper.dist exist, where "arch" is the same as the output of "dpkg \-\-print\-architecture" and "dist" is the same as the codename of the target distribution, then they will be used in preference to other, more general files. .PP All config files are shell scripts which are sourced by a live\-helper program. That means they have to follow the normal shell syntax. You can also put comments in these files; lines beginning with "#" are ignored. +.\" FIXME + +.SH FILES +.\" FIXME +.IP "\fBn/a\fR" 4 +.\" FIXME .SH SEE ALSO \fIlive\-initramfs\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>. +More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>. .SH BUGS -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>. +Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@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.en.1 b/manpages/lh.en.1 deleted file mode 100644 index 862490862..000000000 --- a/manpages/lh.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -live\-helper \- generic live\-helper wrapper - -.SH SYNOPSIS -\fBlh\fR COMMAND [COMMAND_OPTIONS] -.PP -\fBlh\fR [\fIlive\-helper\ options\fR] - -.SH DESCRIPTION -lh is a high\-level command (porcelain) of live\-helper, the Debian Live tool suite. It is a generic wrapper for live\-helper programs. Instead of calling "lh_\fICOMMAND\fR", it can also called through lh as "lh \fICOMMAND\fR", where command is a name of a live\-helper program. See the man page of live\-helper for a list of all available programs and the man page of lh_command for the documentation of the actual helper. - -.SH OPTIONS -lh 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 -\fIlive\-helper\fR(7) -.PP -This program is 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.en.1 b/manpages/lh_binary.en.1 deleted file mode 100644 index 6b262fd55..000000000 --- a/manpages/lh_binary.en.1 +++ /dev/null @@ -1,27 +0,0 @@ -.TH LH_BINARY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary \- create the third stage by generating a binary image - -.SH SYNOPSIS -\fBlh_binary\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary is a high\-level command (porcelain) of live\-helper, the Debian Live tool suite. It calls all necessary live\-helper programs in the correct order to complete the binary stage. - -.SH OPTIONS -lh_binary 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 -\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_checksums.en.1 b/manpages/lh_binary_checksums.en.1 deleted file mode 100644 index 96c6c63a1..000000000 --- a/manpages/lh_binary_checksums.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.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_chroot.en.1 b/manpages/lh_binary_chroot.en.1 deleted file mode 100644 index be820bac8..000000000 --- a/manpages/lh_binary_chroot.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_CHROOT 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_chroot \- download sources - -.SH SYNOPSIS -\fBlh_binary_chroot\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_chroot is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It downloads sources. - -.SH OPTIONS -lh_binary_chroot 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_debian-installer.en.1 b/manpages/lh_binary_debian-installer.en.1 deleted file mode 100644 index c3d20b05e..000000000 --- a/manpages/lh_binary_debian-installer.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_DEBIAN_INSTALLER 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_debian\-installer \- install debian-installer into binary - -.SH SYNOPSIS -\fBlh_binary_debian\-installer\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_debian\-installer is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs debian-installer into binary. - -.SH OPTIONS -lh_binary_debian\-installer 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_disk.en.1 b/manpages/lh_binary_disk.en.1 deleted file mode 100644 index 7c94b32f2..000000000 --- a/manpages/lh_binary_disk.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_DISK 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_disk \- install disk information into binary - -.SH SYNOPSIS -\fBlh_binary_disk\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_disk is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs disk information into binary. - -.SH OPTIONS -lh_binary_disk 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_encryption.en.1 b/manpages/lh_binary_encryption.en.1 deleted file mode 100644 index 62309f333..000000000 --- a/manpages/lh_binary_encryption.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_ENCRYPTION 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_encryption \- encrypt rootfs - -.SH SYNOPSIS -\fBlh_binary_encryption\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_encryption is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It encrypts rootfs. - -.SH OPTIONS -lh_binary_encryption 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_grub.en.1 b/manpages/lh_binary_grub.en.1 deleted file mode 100644 index 56b23dee4..000000000 --- a/manpages/lh_binary_grub.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_GRUB 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_grub \- install grub into binary - -.SH SYNOPSIS -\fBlh_binary_grub\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_grub is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs grub into binary. - -.SH OPTIONS -lh_binary_grub 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_grub2.en.1 b/manpages/lh_binary_grub2.en.1 deleted file mode 100644 index 735201a74..000000000 --- a/manpages/lh_binary_grub2.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_GRUB2 1 "2009\-10\-09" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_grub2 \- install grub2 into binary - -.SH SYNOPSIS -\fBlh_binary_grub2\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_grub2 is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs grub2 into binary. - -.SH OPTIONS -lh_binary_grub2 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_includes.en.1 b/manpages/lh_binary_includes.en.1 deleted file mode 100644 index 42fd36111..000000000 --- a/manpages/lh_binary_includes.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_INCLUDES 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_includes \- copy files into binary - -.SH SYNOPSIS -\fBlh_binary_includes\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_includes is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It copies files into binary. - -.SH OPTIONS -lh_binary_includes 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_iso.en.1 b/manpages/lh_binary_iso.en.1 deleted file mode 100644 index 3e0ecee9f..000000000 --- a/manpages/lh_binary_iso.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_ISO 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_iso \- build iso binary image - -.SH SYNOPSIS -\fBlh_binary_iso\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_iso is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds iso binary images. - -.SH OPTIONS -lh_binary_iso 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_linux-image.en.1 b/manpages/lh_binary_linux-image.en.1 deleted file mode 100644 index 05e1a6cfa..000000000 --- a/manpages/lh_binary_linux-image.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_LINUX\-IMAGE 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_linux\-image \- install linux\-image into binary - -.SH SYNOPSIS -\fBlh_binary_linux\-image\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_linux\-image is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs linux\-image into binary. - -.SH OPTIONS -lh_binary_linux\-image 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_local-hooks.en.1 b/manpages/lh_binary_local-hooks.en.1 deleted file mode 100644 index 766c059cc..000000000 --- a/manpages/lh_binary_local-hooks.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_LOCAL\-HOOKS 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_local\-hooks \- execute local hooks in binary - -.SH SYNOPSIS -\fBlh_binary_local\-hooks\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_local\-hooks is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It executes local hooks in binary. - -.SH OPTIONS -lh_binary_local\-hooks 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_local-includes.en.1 b/manpages/lh_binary_local-includes.en.1 deleted file mode 100644 index 5d5c6fb44..000000000 --- a/manpages/lh_binary_local-includes.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_LOCAL\-INCLUDES 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_local\-includes \- copy files into binary - -.SH SYNOPSIS -\fBlh_binary_local\-includes\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_local\-includes is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It copies files into binary. - -.SH OPTIONS -lh_binary_local\-includes 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_local-packageslists.en.1 b/manpages/lh_binary_local-packageslists.en.1 deleted file mode 100644 index 1c26710a7..000000000 --- a/manpages/lh_binary_local-packageslists.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_LOCAL\-PACKAGESLISTS 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_local\-packageslists \- install local packages lists into binary - -.SH SYNOPSIS -\fBlh_binary_local\-packageslists\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_local\-packageslists is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs local packages lists into binary. - -.SH OPTIONS -lh_binary_local\-packageslists 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_manifest.en.1 b/manpages/lh_binary_manifest.en.1 deleted file mode 100644 index 8fd5abf75..000000000 --- a/manpages/lh_binary_manifest.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_MANIFEST 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_manifest \- create manifest - -.SH SYNOPSIS -\fBlh_binary_manifest\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_manifest is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It creats the manifest. - -.SH OPTIONS -lh_binary_manifest 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_memtest.en.1 b/manpages/lh_binary_memtest.en.1 deleted file mode 100644 index 8b0fb2613..000000000 --- a/manpages/lh_binary_memtest.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_MEMTEST 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_memtest \- install a memtest into binary - -.SH SYNOPSIS -\fBlh_binary_memtest\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_memtest is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs a memtest into binary. - -.SH OPTIONS -lh_binary_memtest 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_net.en.1 b/manpages/lh_binary_net.en.1 deleted file mode 100644 index 7dd4d7d77..000000000 --- a/manpages/lh_binary_net.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_NET 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_net \- build netboot binary image - -.SH SYNOPSIS -\fBlh_binary_net\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_net is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds netboot binary image. - -.SH OPTIONS -lh_binary_net 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_rootfs.en.1 b/manpages/lh_binary_rootfs.en.1 deleted file mode 100644 index 2d9d6e50a..000000000 --- a/manpages/lh_binary_rootfs.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_ROOTFS 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_rootfs \- build rootfs image - -.SH SYNOPSIS -\fBlh_binary_rootfs\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_rootfs is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds rootfs image. - -.SH OPTIONS -lh_binary_rootfs 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_silo.en.1 b/manpages/lh_binary_silo.en.1 deleted file mode 100644 index a2f2a9896..000000000 --- a/manpages/lh_binary_silo.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_SILO 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_silo \- install silo into binary - -.SH SYNOPSIS -\fBlh_binary_silo\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_silo is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs silo into binary. - -.SH OPTIONS -lh_binary_silo 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_syslinux.en.1 b/manpages/lh_binary_syslinux.en.1 deleted file mode 100644 index f372d58d6..000000000 --- a/manpages/lh_binary_syslinux.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_SYSLINUX 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_syslinux \- install syslinux into binary - -.SH SYNOPSIS -\fBlh_binary_syslinux\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_syslinux is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs syslinux into binary. - -.SH OPTIONS -lh_binary_syslinux 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_tar.en.1 b/manpages/lh_binary_tar.en.1 deleted file mode 100644 index 48a060e46..000000000 --- a/manpages/lh_binary_tar.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_TAR 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_tar \- build harddisk binary image - -.SH SYNOPSIS -\fBlh_binary_tar\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_tar is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds harddisk binary image. - -.SH OPTIONS -lh_binary_tar 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_usb.en.1 b/manpages/lh_binary_usb.en.1 deleted file mode 100644 index 5f1592de4..000000000 --- a/manpages/lh_binary_usb.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_USB\-HDD 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_usb\-hdd \- build binary usb\-hdd image - -.SH SYNOPSIS -\fBlh_binary_usb\-hdd\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_usb\-hdd is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds binary usb\-hdd image. - -.SH OPTIONS -lh_binary_usb\-hdd has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. - -.SH SEE ALSO -\fIlh_binary\fR(1) -.br -\fIlive\-helper\fR(7) -.PP -This program is a part of live\-helper. - -.SH HOMEPAGE -More information about live\-helper and the Debian Live project can be found in the homepage at <\fIhttp://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_virtual-hdd.en.1 b/manpages/lh_binary_virtual-hdd.en.1 deleted file mode 100644 index 495c91d57..000000000 --- a/manpages/lh_binary_virtual-hdd.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_VIRTUAL\-HDD 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_virtual\-hdd \- build binary virtual\-hdd image - -.SH SYNOPSIS -\fBlh_binary_virtual\-hdd\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_virtual\-hdd is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds binary virtual\-hdd image. - -.SH OPTIONS -lh_binary_virtual\-hdd has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. - -.SH SEE ALSO -\fIlh_binary\fR(1) -.br -\fIlive\-helper\fR(7) -.PP -This program is a part of live\-helper. - -.SH HOMEPAGE -More information about live\-helper and the Debian Live project can be found in the homepage at <\fIhttp://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_win32-loader.en.1 b/manpages/lh_binary_win32-loader.en.1 deleted file mode 100644 index b3d792cb1..000000000 --- a/manpages/lh_binary_win32-loader.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_WIN32\-LOADER 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_win32\-loader \- install win32\-loader into binary - -.SH SYNOPSIS -\fBlh_binary_win32\-loader\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_win32\-loader is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs win32\-loader into binary. - -.SH OPTIONS -lh_binary_win32\-loader 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_yaboot.en.1 b/manpages/lh_binary_yaboot.en.1 deleted file mode 100644 index d3195de8f..000000000 --- a/manpages/lh_binary_yaboot.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BINARY_YABOOT 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary_yaboot \- install yaboot into binary - -.SH SYNOPSIS -\fBlh_binary_yaboot\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_binary_yaboot is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs yaboot into binary. - -.SH OPTIONS -lh_binary_yaboot 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_bootstrap.en.1 b/manpages/lh_bootstrap.en.1 deleted file mode 100644 index e6aa93a9a..000000000 --- a/manpages/lh_bootstrap.en.1 +++ /dev/null @@ -1,27 +0,0 @@ -.TH LH_BOOTSTRAP 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_bootstrap \- create the first stage by bootstrapping a basic debian system - -.SH SYNOPSIS -\fBlh_bootstrap\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_bootstrap is a high\-level command (porcelain) of live\-helper, the Debian Live tool suite. It calls all necessary live\-helper programs in the correct order to complete the bootstrap stage. - -.SH OPTIONS -lh_bootstrap 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 -\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_bootstrap_cache.en.1 b/manpages/lh_bootstrap_cache.en.1 deleted file mode 100644 index 0b9484dab..000000000 --- a/manpages/lh_bootstrap_cache.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_BOOTSTRAP_CACHE 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_bootstrap \- cache bootstrap stage - -.SH SYNOPSIS -\fBlh_bootstrap_cache\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_bootstrap_cache is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It caches the bootstrap stage. - -.SH OPTIONS -lh_bootstrap_cache 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_bootstrap\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_bootstrap_cdebootstrap.en.1 b/manpages/lh_bootstrap_cdebootstrap.en.1 deleted file mode 100644 index 268f161e8..000000000 --- a/manpages/lh_bootstrap_cdebootstrap.en.1 +++ /dev/null @@ -1,31 +0,0 @@ -.TH LH_BOOTSTRAP_CDEBOOTSTRAP 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_bootstrap_cdebootstrap \- bootstrap a Debian system with \fIcdebootstrap\fR(1) - -.SH SYNOPSIS -\fBlh_bootstrap_cdebootstrap\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_bootstrap_cdebootstrap is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It bootstraps a Debian system with \fIcdebootstrap(1)\fR. - -.SH OPTIONS -lh_bootstrap_cdebootstrap 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_bootstrap\fR(1) -.br -\fIcdebootstrap\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_bootstrap_copy.en.1 b/manpages/lh_bootstrap_copy.en.1 deleted file mode 100644 index 5cd338938..000000000 --- a/manpages/lh_bootstrap_copy.en.1 +++ /dev/null @@ -1,31 +0,0 @@ -.TH LH_BOOTSTRAP_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_bootstrap_copy \- bootstrap by copying the host system - -.SH SYNOPSIS -\fBlh_bootstrap_copy\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_bootstrap_copy is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It bootstraps the live system directly by copying the host system. -.PP -This can be useful if you want to convert/clone your existing host system into a live system, however, make sure you do have enough free space as this can, depending on your host system, get quite big. - -.SH OPTIONS -lh_bootstrap_copy 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_bootstrap\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_bootstrap_debootstrap.en.1 b/manpages/lh_bootstrap_debootstrap.en.1 deleted file mode 100644 index 052deebef..000000000 --- a/manpages/lh_bootstrap_debootstrap.en.1 +++ /dev/null @@ -1,31 +0,0 @@ -.TH LH_BOOTSTRAP_DEBOOTSTRAP 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_bootstrap_debootstrap \- bootstrap a Debian system with \fIdebootstrap\fR(8) - -.SH SYNOPSIS -\fBlh_bootstrap_debootstrap\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_bootstrap_debootstrap is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It bootstraps a Debian system with \fIdebootstrap(8)\fR. - -.SH OPTIONS -lh_bootstrap_debootstrap 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_bootstrap\fR(1) -.br -\fIdebootstrap\fR(8) -.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_build.en.1 b/manpages/lh_build.en.1 deleted file mode 100644 index d4eb6bf15..000000000 --- a/manpages/lh_build.en.1 +++ /dev/null @@ -1,27 +0,0 @@ -.TH LH_BUILD 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_binary \- create the third stage by generating a binary image - -.SH SYNOPSIS -\fBlh_binary\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_build is a high\-level command (porcelain) of live\-helper, the Debian Live tool suite. It calls all necessary live\-helper programs in the correct order to complete the bootstrap, chroot, binary, and source stage. - -.SH OPTIONS -lh_build 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 -\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_chroot.en.1 b/manpages/lh_chroot.en.1 deleted file mode 100644 index 0d49c7e8f..000000000 --- a/manpages/lh_chroot.en.1 +++ /dev/null @@ -1,27 +0,0 @@ -.TH LH_CHROOT 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot \- create the second stage by customizing the chroot - -.SH SYNOPSIS -\fBlh_chroot\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot is a high\-level command (porcelain) of live\-helper, the Debian Live tool suite. It calls all necessary live\-helper programs in the correct order to complete the chroot stage. - -.SH OPTIONS -lh_chroot 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 -\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_chroot_apt.en.1 b/manpages/lh_chroot_apt.en.1 deleted file mode 100644 index 16e5223a1..000000000 --- a/manpages/lh_chroot_apt.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_apt \- manage /etc/apt/apt.conf - -.SH SYNOPSIS -\fBlh_chroot_apt\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_apt is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It manages /etc/apt/apt.conf. - -.SH OPTIONS -lh_chroot_copy 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_chroot\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_chroot_cache.en.1 b/manpages/lh_chroot_cache.en.1 deleted file mode 100644 index d3b69e01c..000000000 --- a/manpages/lh_chroot_cache.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_cache \- cache chroot stage - -.SH SYNOPSIS -\fBlh_chroot_cache\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_cache is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It caches the chroot stage. - -.SH OPTIONS -lh_chroot_cache 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_chroot\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_chroot_debianchroot.en.1 b/manpages/lh_chroot_debianchroot.en.1 deleted file mode 100644 index 1b44364f9..000000000 --- a/manpages/lh_chroot_debianchroot.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_debianchroot \- manage /etc/debian_chroot - -.SH SYNOPSIS -\fBlh_chroot_debianchroot\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_debianchroot is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It manages /etc/debian_chroot. - -.SH OPTIONS -lh_chroot_debianchroot 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_chroot\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_chroot_devpts.en.1 b/manpages/lh_chroot_devpts.en.1 deleted file mode 100644 index d95703c44..000000000 --- a/manpages/lh_chroot_devpts.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_devpts \- mount /dev/pts - -.SH SYNOPSIS -\fBlh_chroot_devpts\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_devpts is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It mounts /dev/pts. - -.SH OPTIONS -lh_chroot_devpts 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_chroot\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_chroot_dpkg.en.1 b/manpages/lh_chroot_dpkg.en.1 deleted file mode 100644 index ae1c419a7..000000000 --- a/manpages/lh_chroot_dpkg.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_dpkg \- manage /sbin/dpkg - -.SH SYNOPSIS -\fBlh_chroot_dpkg\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_dpkg is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It manages /sbin/dpkg. - -.SH OPTIONS -lh_chroot_dpkg 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_chroot\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_chroot_hacks.en.1 b/manpages/lh_chroot_hacks.en.1 deleted file mode 100644 index d87aab10a..000000000 --- a/manpages/lh_chroot_hacks.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_hacks \- execute hacks in chroot - -.SH SYNOPSIS -\fBlh_chroot_hacks\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_hacks is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It executes hacks in chroot. - -.SH OPTIONS -lh_chroot_hacks 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_chroot\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_chroot_hooks.en.1 b/manpages/lh_chroot_hooks.en.1 deleted file mode 100644 index d9e73d2a8..000000000 --- a/manpages/lh_chroot_hooks.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_hooks \- execute hooks in chroot - -.SH SYNOPSIS -\fBlh_chroot_hooks\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_hooks is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It executes hooks in chroot. - -.SH OPTIONS -lh_chroot_hooks 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_chroot\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_chroot_hostname.en.1 b/manpages/lh_chroot_hostname.en.1 deleted file mode 100644 index 461598769..000000000 --- a/manpages/lh_chroot_hostname.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_hostname \- manage /bin/hostname - -.SH SYNOPSIS -\fBlh_chroot_hostname\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_hostname is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It manages /bin/hostname. - -.SH OPTIONS -lh_chroot_hostname 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_chroot\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_chroot_hosts.en.1 b/manpages/lh_chroot_hosts.en.1 deleted file mode 100644 index cba695a1a..000000000 --- a/manpages/lh_chroot_hosts.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_hosts \- manage /etc/hosts - -.SH SYNOPSIS -\fBlh_chroot_hosts\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_hosts is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It manages /etc/hosts. - -.SH OPTIONS -lh_chroot_hosts 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_chroot\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_chroot_install-packages.en.1 b/manpages/lh_chroot_install-packages.en.1 deleted file mode 100644 index 65715a798..000000000 --- a/manpages/lh_chroot_install-packages.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_install-packages \- install queued packages into chroot - -.SH SYNOPSIS -\fBlh_chroot_install-packages\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_install-packages is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs queued packages into chroot. - -.SH OPTIONS -lh_chroot_install-packages 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_chroot\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_chroot_interactive.en.1 b/manpages/lh_chroot_interactive.en.1 deleted file mode 100644 index a40b83477..000000000 --- a/manpages/lh_chroot_interactive.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_interactive \- make build interactive - -.SH SYNOPSIS -\fBlh_chroot_interactive\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_interactive is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It makes build interactive. - -.SH OPTIONS -lh_chroot_interactive 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_chroot\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_chroot_linux-image.en.1 b/manpages/lh_chroot_linux-image.en.1 deleted file mode 100644 index 67286946b..000000000 --- a/manpages/lh_chroot_linux-image.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_linux-image \- manage /etc/kernel-img.conf - -.SH SYNOPSIS -\fBlh_chroot_copy\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_linux-image is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It manages /etc/kernel-img.conf. - -.SH OPTIONS -lh_chroot_linux-image 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_chroot\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_chroot_local-hooks.en.1 b/manpages/lh_chroot_local-hooks.en.1 deleted file mode 100644 index 7d6c5b323..000000000 --- a/manpages/lh_chroot_local-hooks.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_local-hooks \- execute local hooks in chroot - -.SH SYNOPSIS -\fBlh_chroot_local-hooks\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_local-hooks is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It executes local hooks in chroot. - -.SH OPTIONS -lh_chroot_local-hooks 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_chroot\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_chroot_local-includes.en.1 b/manpages/lh_chroot_local-includes.en.1 deleted file mode 100644 index 03d055b6b..000000000 --- a/manpages/lh_chroot_local-includes.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_local-includes \- copy local files into chroot - -.SH SYNOPSIS -\fBlh_chroot_local-includes\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_local-includes is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It copies local files into chroot. - -.SH OPTIONS -lh_chroot_local-includes 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_chroot\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_chroot_local-packages.en.1 b/manpages/lh_chroot_local-packages.en.1 deleted file mode 100644 index 86d431745..000000000 --- a/manpages/lh_chroot_local-packages.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_local-packages \- queue install of local packages into chroot - -.SH SYNOPSIS -\fBlh_chroot_local-packages\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_local-packages is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It queues installation of local packages into chroot. - -.SH OPTIONS -lh_chroot_local-packages 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_chroot\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_chroot_local-patches.en.1 b/manpages/lh_chroot_local-patches.en.1 deleted file mode 100644 index 4587b92be..000000000 --- a/manpages/lh_chroot_local-patches.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_local-patches \- apply local patches against chroot - -.SH SYNOPSIS -\fBlh_chroot_local-patches\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_local-patches is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It applies local patches against chroot. - -.SH OPTIONS -lh_chroot_local-patches 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_chroot\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_chroot_local-preseed.en.1 b/manpages/lh_chroot_local-preseed.en.1 deleted file mode 100644 index f8bc7c0e8..000000000 --- a/manpages/lh_chroot_local-preseed.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_local-preseed \- use debconf local preseeding file - -.SH SYNOPSIS -\fBlh_chroot_local-preseed\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_local-preseed is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It uses debconf local preseeding files. - -.SH OPTIONS -lh_chroot_local-preseed 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_chroot\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_chroot_localization.en.1 b/manpages/lh_chroot_localization.en.1 deleted file mode 100644 index 1e0f2e06c..000000000 --- a/manpages/lh_chroot_localization.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_localization \- install localization packages into chroot - -.SH SYNOPSIS -\fBlh_chroot_localization\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_localization is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs localization packages into chroot. - -.SH OPTIONS -lh_chroot_localization 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_chroot\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_chroot_packages.en.1 b/manpages/lh_chroot_packages.en.1 deleted file mode 100644 index 69b5c9b70..000000000 --- a/manpages/lh_chroot_packages.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_packages \- queue install of packages into chroot - -.SH SYNOPSIS -\fBlh_chroot_packages\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_packages is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It queues installation of packages into chroot. - -.SH OPTIONS -lh_chroot_packages 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_chroot\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_chroot_packageslists.en.1 b/manpages/lh_chroot_packageslists.en.1 deleted file mode 100644 index 04528a839..000000000 --- a/manpages/lh_chroot_packageslists.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_packageslists \- queue install of packages lists into chroot - -.SH SYNOPSIS -\fBlh_chroot_packageslists\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_packageslists is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It queues installation of packages lists into chroot. - -.SH OPTIONS -lh_chroot_packageslists 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_chroot\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_chroot_preseed.en.1 b/manpages/lh_chroot_preseed.en.1 deleted file mode 100644 index f22694d1d..000000000 --- a/manpages/lh_chroot_preseed.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_preseed \- use debconf preseeding file - -.SH SYNOPSIS -\fBlh_chroot_preseed\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_preseed is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It uses debconf preseeding files. - -.SH OPTIONS -lh_chroot_preseed 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_chroot\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_chroot_proc.en.1 b/manpages/lh_chroot_proc.en.1 deleted file mode 100644 index 7ed12f7f1..000000000 --- a/manpages/lh_chroot_proc.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_proc \- mount /proc - -.SH SYNOPSIS -\fBlh_chroot_proc\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_proc is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It mounts /proc. - -.SH OPTIONS -lh_chroot_proc 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_chroot\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_chroot_resolv.en.1 b/manpages/lh_chroot_resolv.en.1 deleted file mode 100644 index 31b208039..000000000 --- a/manpages/lh_chroot_resolv.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_resolv \- manage /etc/resolv.conf - -.SH SYNOPSIS -\fBlh_chroot_resolv\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_resolv is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It manages /etc/resolv.conf. - -.SH OPTIONS -lh_chroot_resolv 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_chroot\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_chroot_selinuxfs.en.1 b/manpages/lh_chroot_selinuxfs.en.1 deleted file mode 100644 index 589fa4f13..000000000 --- a/manpages/lh_chroot_selinuxfs.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_selinuxfs \- mount /selinux - -.SH SYNOPSIS -\fBlh_chroot_selinuxfs\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_selinuxfs is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It mounts /selinux. - -.SH OPTIONS -lh_chroot_selinuxfs 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_chroot\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_chroot_sources.en.1 b/manpages/lh_chroot_sources.en.1 deleted file mode 100644 index 7cddf4229..000000000 --- a/manpages/lh_chroot_sources.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_sources \- manage /etc/apt/sources.list - -.SH SYNOPSIS -\fBlh_chroot_sources\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_sources is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It manages /etc/apt/sources.list. - -.SH OPTIONS -lh_chroot_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_chroot\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_chroot_symlinks.en.1 b/manpages/lh_chroot_symlinks.en.1 deleted file mode 100644 index 3ce240180..000000000 --- a/manpages/lh_chroot_symlinks.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_symlinks \- convert symlinks - -.SH SYNOPSIS -\fBlh_chroot_symlinks\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_symlinks is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It converts symlinks. - -.SH OPTIONS -lh_chroot_symlinks 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_chroot\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_chroot_sysfs.en.1 b/manpages/lh_chroot_sysfs.en.1 deleted file mode 100644 index 7641550d1..000000000 --- a/manpages/lh_chroot_sysfs.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_sysfs \- mount /sys - -.SH SYNOPSIS -\fBlh_chroot_sysfs\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_sysfs is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It mounts /sys. - -.SH OPTIONS -lh_chroot_sysfs 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_chroot\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_chroot_sysv-rc.en.1 b/manpages/lh_chroot_sysv-rc.en.1 deleted file mode 100644 index 02a0c1c53..000000000 --- a/manpages/lh_chroot_sysv-rc.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_sysvrc \- manage /usr/sbin/policy-rc.d - -.SH SYNOPSIS -\fBlh_chroot_sysvrc\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_sysvrc is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It manages /usr/sbin/policy-rc.d. - -.SH OPTIONS -lh_chroot_sysvrc 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_chroot\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_chroot_sysvinit.en.1 b/manpages/lh_chroot_sysvinit.en.1 deleted file mode 100644 index a4ba9d2a9..000000000 --- a/manpages/lh_chroot_sysvinit.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_sysvinit \- configure sysvinit - -.SH SYNOPSIS -\fBlh_chroot_sysvinit\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_sysvinit is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It configures sysvinit. - -.SH OPTIONS -lh_chroot_sysvinit 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_chroot\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_chroot_tasks.en.1 b/manpages/lh_chroot_tasks.en.1 deleted file mode 100644 index 7c40dae23..000000000 --- a/manpages/lh_chroot_tasks.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_COPY 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_tasks \- install tasks into chroot - -.SH SYNOPSIS -\fBlh_chroot_tasks\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_tasks is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs tasks into chroot. - -.SH OPTIONS -lh_chroot_tasks 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_chroot\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_chroot_upstart.en.1 b/manpages/lh_chroot_upstart.en.1 deleted file mode 100644 index 2fe2e1d62..000000000 --- a/manpages/lh_chroot_upstart.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_CHROOT_UPSTART 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_chroot_upstart \- manage /usr/sbin/initctl - -.SH SYNOPSIS -\fBlh_chroot_upstart\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_chroot_upstart is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It manages /usr/sbin/initctl. - -.SH OPTIONS -lh_chroot_upstart 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_chroot\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_clean.en.1 b/manpages/lh_clean.en.1 deleted file mode 100644 index e69503838..000000000 --- a/manpages/lh_clean.en.1 +++ /dev/null @@ -1,46 +0,0 @@ -.TH LH_CLEAN 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_clean \- clean up system build directories - -.SH SYNOPSIS -\fBlh_clean\fR [\fIlive\-helper\ options\fR\] [\fB\-\-all\fR] [\fB\-\-cache\fR] [\fB\-\-chroot\fR] [\fB\-\-binary\fR] [\fB\-\-purge\fR] [\fB\-\-remove\fR] [\fB\-\-stage\fR] [\fB\-\-source\fR] -.PP -\fBlh_clean\fR [\fIlive\-helper\ options\fR] - -.SH DESCRIPTION -lh_clean is a high\-level command (porcelain) of live\-helper, the Debian Live tool suite. It is responsible for cleaning up after a system is built. It removes the system build directories, and removes some other files including stage files, and any detritus left behind by other live\-helper commands. - -.SH OPTIONS -In addition to its specific options, lh_clean also understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. -.br -.IP "\fB\-\-all\fR" 4 -removes chroot, binary, stage, and source, cache is kept. This is the default operation and will be processed if no argument is given. -.IP "\fB\-\-cache\fR" 4 -removes all cache directories. -.IP "\fB\-\-chroot\fR" 4 -unmounts and removes the chroot directory. -.IP "\fB\-\-binary\fR" 4 -removes all binary related caches, directories, and stages files. -.IP "\fB\-\-purge\fR" 4 -removes everything (including cache). The config directory is kept. -.IP "\fB\-\-remove\fR" 4 -removes everything (including package cache, but not stage cache). The config directory is kept. -.IP "\fB\-\-stage\fR" 4 -removes all stage files. -.IP "\fB\-\-source\fR" 4 -removes all source related caches, directories, and stage files. - -.SH SEE ALSO -\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_local.en.1 b/manpages/lh_local.en.1 deleted file mode 100644 index a819d40af..000000000 --- a/manpages/lh_local.en.1 +++ /dev/null @@ -1,27 +0,0 @@ -.TH LH_LOCAL 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_local \- helper for using a local live\-helper - -.SH SYNOPSIS -\fBlh_local\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_local is a high\-level command (porcelain) of live\-helper, the Debian Live tool suite. It is a helper for using a local live\-helper. - -.SH OPTIONS -lh_local 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 -\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.en.1 b/manpages/lh_source.en.1 deleted file mode 100644 index 7e0811e95..000000000 --- a/manpages/lh_source.en.1 +++ /dev/null @@ -1,27 +0,0 @@ -.TH LH_SOURCE 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_source \- create the optional fourth stage by generating a source image - -.SH SYNOPSIS -\fBlh_source\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_source is a high\-level command (porcelain) of live\-helper, the Debian Live tool suite. It calls all necessary live\-helper programs in the correct order to complete the source stage. - -.SH OPTIONS -lh_source 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 -\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_checksums.en.1 b/manpages/lh_source_checksums.en.1 deleted file mode 100644 index 5985c47c2..000000000 --- a/manpages/lh_source_checksums.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.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_debian-live.en.1 b/manpages/lh_source_debian-live.en.1 deleted file mode 100644 index 8d2425b9c..000000000 --- a/manpages/lh_source_debian-live.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_SOURCE_DEBIAN_LIVE 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_source_debian-live \- copy debian-live config into source - -.SH SYNOPSIS -\fBlh_source_debian-live\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_source_debian-live is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It copies debian-live config into source. - -.SH OPTIONS -lh_source_debian-live 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_debian.en.1 b/manpages/lh_source_debian.en.1 deleted file mode 100644 index 8845d862c..000000000 --- a/manpages/lh_source_debian.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_SOURCE_DEBIAN 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_source_debian \- download sources - -.SH SYNOPSIS -\fBlh_source_debian\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_source_debian is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It downloads sources. - -.SH OPTIONS -lh_source_debian 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_disk.en.1 b/manpages/lh_source_disk.en.1 deleted file mode 100644 index a9a97e1b8..000000000 --- a/manpages/lh_source_disk.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_SOURCE_DISK 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_source_disk \- install disk information into source - -.SH SYNOPSIS -\fBlh_source_disk\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_source_disk is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It installs disk information into source. - -.SH OPTIONS -lh_source_disk 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_iso.en.1 b/manpages/lh_source_iso.en.1 deleted file mode 100644 index 6cdee86a9..000000000 --- a/manpages/lh_source_iso.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_SOURCE_ISO 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_source_iso \- build iso source image - -.SH SYNOPSIS -\fBlh_source_iso\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_source_iso is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds iso source image. - -.SH OPTIONS -lh_source_iso 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_net.en.1 b/manpages/lh_source_net.en.1 deleted file mode 100644 index 1e0d90cfe..000000000 --- a/manpages/lh_source_net.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_SOURCE_NET 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_source_net \- build source net image - -.SH SYNOPSIS -\fBlh_source_net\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_source_net is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds source net image. - -.SH OPTIONS -lh_source_net 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_tar.en.1 b/manpages/lh_source_tar.en.1 deleted file mode 100644 index 81021d8b6..000000000 --- a/manpages/lh_source_tar.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_SOURCE_TAR 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_source_tar \- build source tarball - -.SH SYNOPSIS -\fBlh_source_tar\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_source_tar is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds source tarball. - -.SH OPTIONS -lh_source_tar 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_usb.en.1 b/manpages/lh_source_usb.en.1 deleted file mode 100644 index 053f0087f..000000000 --- a/manpages/lh_source_usb.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_SOURCE_USB\-HDD 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_source_usb\-hdd \- build source usb-hdd image - -.SH SYNOPSIS -\fBlh_source_usb\-hdd\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_source_usb\-hdd is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds source usb-hdd image. - -.SH OPTIONS -lh_source_usb\-hdd has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. - -.SH SEE ALSO -\fIlh_source\fR(1) -.br -\fIlive\-helper\fR(7) -.PP -This program is a part of live\-helper. - -.SH HOMEPAGE -More information about live\-helper and the Debian Live project can be found in the homepage at <\fIhttp://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_virtual-hdd.en.1 b/manpages/lh_source_virtual-hdd.en.1 deleted file mode 100644 index e282ea575..000000000 --- a/manpages/lh_source_virtual-hdd.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_SOURCE_VIRTUAL\-HDD 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_source_virtual\-hdd \- build source virtual-hdd image - -.SH SYNOPSIS -\fBlh_source_virtual\-hdd\fR [\fIlive\-helper options\fR] - -.SH DESCRIPTION -lh_source_virtual\-hdd is a low\-level command (plumbing) of live\-helper, the Debian Live tool suite. It builds source virtual-hdd image. - -.SH OPTIONS -lh_source_virtual\-hdd has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options. - -.SH SEE ALSO -\fIlh_source\fR(1) -.br -\fIlive\-helper\fR(7) -.PP -This program is a part of live\-helper. - -.SH HOMEPAGE -More information about live\-helper and the Debian Live project can be found in the homepage at <\fIhttp://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_testroot.en.1 b/manpages/lh_testroot.en.1 deleted file mode 100644 index 8c9085c2a..000000000 --- a/manpages/lh_testroot.en.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH LH_TESTROOT 1 "2009\-06\-14" "1.0.5" "live\-helper" - -.SH NAME -lh_testroot \- ensure that a system is built as root - -.SH SYNOPSIS -\fBlh_testroot\fR [\fIlive\-helper\ options\fR] - -.SH DESCRIPTION -lh is a high\-level command (porcelain) of live\-helper, the Debian Live tool suite. It simply checks to see if you are root. If not, it exits with an error. Debian Live images must currently be built as real root. -.PP -Support for using \fIfakeroot\fR(1) and \fIsudo\fR(8) internally in live\-helper itself is still experimental, however, calling a helper yourself with sudo is safe. - -.SH OPTIONS -lh_testroot 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 -\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/po4a/de/lh.en.1.po b/manpages/old/de/lh.1.po similarity index 100% rename from manpages/po4a/de/lh.en.1.po rename to manpages/old/de/lh.1.po diff --git a/manpages/po4a/de/lh_binary.en.1.po b/manpages/old/de/lh_binary.1.po similarity index 100% rename from manpages/po4a/de/lh_binary.en.1.po rename to manpages/old/de/lh_binary.1.po diff --git a/manpages/po4a/de/lh_binary_encryption.en.1.po b/manpages/old/de/lh_binary.ryption.en.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_encryption.en.1.po rename to manpages/old/de/lh_binary.ryption.en.1.po diff --git a/manpages/po4a/de/lh_binary_checksums.en.1.po b/manpages/old/de/lh_binary_checksums.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_checksums.en.1.po rename to manpages/old/de/lh_binary_checksums.1.po diff --git a/manpages/po4a/de/lh_binary_chroot.en.1.po b/manpages/old/de/lh_binary_chroot.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_chroot.en.1.po rename to manpages/old/de/lh_binary_chroot.1.po diff --git a/manpages/po4a/de/lh_binary_debian-installer.en.1.po b/manpages/old/de/lh_binary_debian-installer.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_debian-installer.en.1.po rename to manpages/old/de/lh_binary_debian-installer.1.po diff --git a/manpages/po4a/de/lh_binary_disk.en.1.po b/manpages/old/de/lh_binary_disk.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_disk.en.1.po rename to manpages/old/de/lh_binary_disk.1.po diff --git a/manpages/po4a/de/lh_binary_grub.en.1.po b/manpages/old/de/lh_binary_grub.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_grub.en.1.po rename to manpages/old/de/lh_binary_grub.1.po diff --git a/manpages/po4a/de/lh_binary_includes.en.1.po b/manpages/old/de/lh_binary_includes.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_includes.en.1.po rename to manpages/old/de/lh_binary_includes.1.po diff --git a/manpages/po4a/de/lh_binary_iso.en.1.po b/manpages/old/de/lh_binary_iso.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_iso.en.1.po rename to manpages/old/de/lh_binary_iso.1.po diff --git a/manpages/po4a/de/lh_binary_linux-image.en.1.po b/manpages/old/de/lh_binary_linux-image.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_linux-image.en.1.po rename to manpages/old/de/lh_binary_linux-image.1.po diff --git a/manpages/po4a/de/lh_binary_local-hooks.en.1.po b/manpages/old/de/lh_binary_local-hooks.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_local-hooks.en.1.po rename to manpages/old/de/lh_binary_local-hooks.1.po diff --git a/manpages/po4a/de/lh_binary_local-includes.en.1.po b/manpages/old/de/lh_binary_local-includes.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_local-includes.en.1.po rename to manpages/old/de/lh_binary_local-includes.1.po diff --git a/manpages/po4a/de/lh_binary_local-packageslists.en.1.po b/manpages/old/de/lh_binary_local-packageslists.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_local-packageslists.en.1.po rename to manpages/old/de/lh_binary_local-packageslists.1.po diff --git a/manpages/po4a/de/lh_binary_manifest.en.1.po b/manpages/old/de/lh_binary_manifest.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_manifest.en.1.po rename to manpages/old/de/lh_binary_manifest.1.po diff --git a/manpages/po4a/de/lh_binary_memtest.en.1.po b/manpages/old/de/lh_binary_memtest.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_memtest.en.1.po rename to manpages/old/de/lh_binary_memtest.1.po diff --git a/manpages/po4a/de/lh_binary_net.en.1.po b/manpages/old/de/lh_binary_net.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_net.en.1.po rename to manpages/old/de/lh_binary_net.1.po diff --git a/manpages/po4a/de/lh_binary_rootfs.en.1.po b/manpages/old/de/lh_binary_rootfs.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_rootfs.en.1.po rename to manpages/old/de/lh_binary_rootfs.1.po diff --git a/manpages/po4a/de/lh_binary_silo.en.1.po b/manpages/old/de/lh_binary_silo.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_silo.en.1.po rename to manpages/old/de/lh_binary_silo.1.po diff --git a/manpages/po4a/de/lh_binary_syslinux.en.1.po b/manpages/old/de/lh_binary_syslinux.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_syslinux.en.1.po rename to manpages/old/de/lh_binary_syslinux.1.po diff --git a/manpages/po4a/de/lh_binary_tar.en.1.po b/manpages/old/de/lh_binary_tar.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_tar.en.1.po rename to manpages/old/de/lh_binary_tar.1.po diff --git a/manpages/po4a/de/lh_binary_usb.en.1.po b/manpages/old/de/lh_binary_usb.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_usb.en.1.po rename to manpages/old/de/lh_binary_usb.1.po diff --git a/manpages/po4a/de/lh_binary_virtual-hdd.en.1.po b/manpages/old/de/lh_binary_virtual-hdd.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_virtual-hdd.en.1.po rename to manpages/old/de/lh_binary_virtual-hdd.1.po diff --git a/manpages/po4a/de/lh_binary_win32-loader.en.1.po b/manpages/old/de/lh_binary_win32-loader.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_win32-loader.en.1.po rename to manpages/old/de/lh_binary_win32-loader.1.po diff --git a/manpages/po4a/de/lh_binary_yaboot.en.1.po b/manpages/old/de/lh_binary_yaboot.1.po similarity index 100% rename from manpages/po4a/de/lh_binary_yaboot.en.1.po rename to manpages/old/de/lh_binary_yaboot.1.po diff --git a/manpages/po4a/de/lh_bootstrap.en.1.po b/manpages/old/de/lh_bootstrap.1.po similarity index 100% rename from manpages/po4a/de/lh_bootstrap.en.1.po rename to manpages/old/de/lh_bootstrap.1.po diff --git a/manpages/po4a/de/lh_bootstrap_cache.en.1.po b/manpages/old/de/lh_bootstrap_cache.1.po similarity index 100% rename from manpages/po4a/de/lh_bootstrap_cache.en.1.po rename to manpages/old/de/lh_bootstrap_cache.1.po diff --git a/manpages/po4a/de/lh_bootstrap_cdebootstrap.en.1.po b/manpages/old/de/lh_bootstrap_cdebootstrap.1.po similarity index 100% rename from manpages/po4a/de/lh_bootstrap_cdebootstrap.en.1.po rename to manpages/old/de/lh_bootstrap_cdebootstrap.1.po diff --git a/manpages/po4a/de/lh_bootstrap_copy.en.1.po b/manpages/old/de/lh_bootstrap_copy.1.po similarity index 100% rename from manpages/po4a/de/lh_bootstrap_copy.en.1.po rename to manpages/old/de/lh_bootstrap_copy.1.po diff --git a/manpages/po4a/de/lh_bootstrap_debootstrap.en.1.po b/manpages/old/de/lh_bootstrap_debootstrap.1.po similarity index 100% rename from manpages/po4a/de/lh_bootstrap_debootstrap.en.1.po rename to manpages/old/de/lh_bootstrap_debootstrap.1.po diff --git a/manpages/po4a/de/lh_build.en.1.po b/manpages/old/de/lh_build.1.po similarity index 100% rename from manpages/po4a/de/lh_build.en.1.po rename to manpages/old/de/lh_build.1.po diff --git a/manpages/po4a/de/lh_chroot.en.1.po b/manpages/old/de/lh_chroot.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot.en.1.po rename to manpages/old/de/lh_chroot.1.po diff --git a/manpages/po4a/de/lh_chroot_apt.en.1.po b/manpages/old/de/lh_chroot_apt.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_apt.en.1.po rename to manpages/old/de/lh_chroot_apt.1.po diff --git a/manpages/po4a/de/lh_chroot_cache.en.1.po b/manpages/old/de/lh_chroot_cache.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_cache.en.1.po rename to manpages/old/de/lh_chroot_cache.1.po diff --git a/manpages/po4a/de/lh_chroot_debianchroot.en.1.po b/manpages/old/de/lh_chroot_debianchroot.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_debianchroot.en.1.po rename to manpages/old/de/lh_chroot_debianchroot.1.po diff --git a/manpages/po4a/de/lh_chroot_devpts.en.1.po b/manpages/old/de/lh_chroot_devpts.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_devpts.en.1.po rename to manpages/old/de/lh_chroot_devpts.1.po diff --git a/manpages/po4a/de/lh_chroot_dpkg.en.1.po b/manpages/old/de/lh_chroot_dpkg.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_dpkg.en.1.po rename to manpages/old/de/lh_chroot_dpkg.1.po diff --git a/manpages/po4a/de/lh_chroot_hacks.en.1.po b/manpages/old/de/lh_chroot_hacks.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_hacks.en.1.po rename to manpages/old/de/lh_chroot_hacks.1.po diff --git a/manpages/po4a/de/lh_chroot_hooks.en.1.po b/manpages/old/de/lh_chroot_hooks.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_hooks.en.1.po rename to manpages/old/de/lh_chroot_hooks.1.po diff --git a/manpages/po4a/de/lh_chroot_hostname.en.1.po b/manpages/old/de/lh_chroot_hostname.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_hostname.en.1.po rename to manpages/old/de/lh_chroot_hostname.1.po diff --git a/manpages/po4a/de/lh_chroot_hosts.en.1.po b/manpages/old/de/lh_chroot_hosts.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_hosts.en.1.po rename to manpages/old/de/lh_chroot_hosts.1.po diff --git a/manpages/po4a/de/lh_chroot_install-packages.en.1.po b/manpages/old/de/lh_chroot_install-packages.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_install-packages.en.1.po rename to manpages/old/de/lh_chroot_install-packages.1.po diff --git a/manpages/po4a/de/lh_chroot_interactive.en.1.po b/manpages/old/de/lh_chroot_interactive.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_interactive.en.1.po rename to manpages/old/de/lh_chroot_interactive.1.po diff --git a/manpages/po4a/de/lh_chroot_linux-image.en.1.po b/manpages/old/de/lh_chroot_linux-image.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_linux-image.en.1.po rename to manpages/old/de/lh_chroot_linux-image.1.po diff --git a/manpages/po4a/de/lh_chroot_local-hooks.en.1.po b/manpages/old/de/lh_chroot_local-hooks.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_local-hooks.en.1.po rename to manpages/old/de/lh_chroot_local-hooks.1.po diff --git a/manpages/po4a/de/lh_chroot_local-includes.en.1.po b/manpages/old/de/lh_chroot_local-includes.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_local-includes.en.1.po rename to manpages/old/de/lh_chroot_local-includes.1.po diff --git a/manpages/po4a/de/lh_chroot_local-packages.en.1.po b/manpages/old/de/lh_chroot_local-packages.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_local-packages.en.1.po rename to manpages/old/de/lh_chroot_local-packages.1.po diff --git a/manpages/po4a/de/lh_chroot_local-patches.en.1.po b/manpages/old/de/lh_chroot_local-patches.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_local-patches.en.1.po rename to manpages/old/de/lh_chroot_local-patches.1.po diff --git a/manpages/po4a/de/lh_chroot_local-preseed.en.1.po b/manpages/old/de/lh_chroot_local-preseed.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_local-preseed.en.1.po rename to manpages/old/de/lh_chroot_local-preseed.1.po diff --git a/manpages/po4a/de/lh_chroot_localization.en.1.po b/manpages/old/de/lh_chroot_localization.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_localization.en.1.po rename to manpages/old/de/lh_chroot_localization.1.po diff --git a/manpages/po4a/de/lh_chroot_packages.en.1.po b/manpages/old/de/lh_chroot_packages.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_packages.en.1.po rename to manpages/old/de/lh_chroot_packages.1.po diff --git a/manpages/po4a/de/lh_chroot_packageslists.en.1.po b/manpages/old/de/lh_chroot_packageslists.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_packageslists.en.1.po rename to manpages/old/de/lh_chroot_packageslists.1.po diff --git a/manpages/po4a/de/lh_chroot_preseed.en.1.po b/manpages/old/de/lh_chroot_preseed.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_preseed.en.1.po rename to manpages/old/de/lh_chroot_preseed.1.po diff --git a/manpages/po4a/de/lh_chroot_proc.en.1.po b/manpages/old/de/lh_chroot_proc.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_proc.en.1.po rename to manpages/old/de/lh_chroot_proc.1.po diff --git a/manpages/po4a/de/lh_chroot_resolv.en.1.po b/manpages/old/de/lh_chroot_resolv.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_resolv.en.1.po rename to manpages/old/de/lh_chroot_resolv.1.po diff --git a/manpages/po4a/de/lh_chroot_selinuxfs.en.1.po b/manpages/old/de/lh_chroot_selinuxfs.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_selinuxfs.en.1.po rename to manpages/old/de/lh_chroot_selinuxfs.1.po diff --git a/manpages/po4a/de/lh_chroot_sources.en.1.po b/manpages/old/de/lh_chroot_sources.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_sources.en.1.po rename to manpages/old/de/lh_chroot_sources.1.po diff --git a/manpages/po4a/de/lh_chroot_symlinks.en.1.po b/manpages/old/de/lh_chroot_symlinks.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_symlinks.en.1.po rename to manpages/old/de/lh_chroot_symlinks.1.po diff --git a/manpages/po4a/de/lh_chroot_sysfs.en.1.po b/manpages/old/de/lh_chroot_sysfs.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_sysfs.en.1.po rename to manpages/old/de/lh_chroot_sysfs.1.po diff --git a/manpages/po4a/de/lh_chroot_sysv-rc.en.1.po b/manpages/old/de/lh_chroot_sysv-rc.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_sysv-rc.en.1.po rename to manpages/old/de/lh_chroot_sysv-rc.1.po diff --git a/manpages/po4a/de/lh_chroot_sysvinit.en.1.po b/manpages/old/de/lh_chroot_sysvinit.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_sysvinit.en.1.po rename to manpages/old/de/lh_chroot_sysvinit.1.po diff --git a/manpages/po4a/de/lh_chroot_tasks.en.1.po b/manpages/old/de/lh_chroot_tasks.1.po similarity index 100% rename from manpages/po4a/de/lh_chroot_tasks.en.1.po rename to manpages/old/de/lh_chroot_tasks.1.po diff --git a/manpages/po4a/de/lh_clean.en.1.po b/manpages/old/de/lh_clean.1.po similarity index 100% rename from manpages/po4a/de/lh_clean.en.1.po rename to manpages/old/de/lh_clean.1.po diff --git a/manpages/po4a/de/lh_config.en.1.po b/manpages/old/de/lh_config.1.po similarity index 100% rename from manpages/po4a/de/lh_config.en.1.po rename to manpages/old/de/lh_config.1.po diff --git a/manpages/po4a/de/lh_local.en.1.po b/manpages/old/de/lh_local.1.po similarity index 100% rename from manpages/po4a/de/lh_local.en.1.po rename to manpages/old/de/lh_local.1.po diff --git a/manpages/po4a/de/lh_source.en.1.po b/manpages/old/de/lh_source.1.po similarity index 100% rename from manpages/po4a/de/lh_source.en.1.po rename to manpages/old/de/lh_source.1.po diff --git a/manpages/po4a/de/lh_source_checksums.en.1.po b/manpages/old/de/lh_source_checksums.1.po similarity index 100% rename from manpages/po4a/de/lh_source_checksums.en.1.po rename to manpages/old/de/lh_source_checksums.1.po diff --git a/manpages/po4a/de/lh_source_debian-live.en.1.po b/manpages/old/de/lh_source_debian-live.1.po similarity index 100% rename from manpages/po4a/de/lh_source_debian-live.en.1.po rename to manpages/old/de/lh_source_debian-live.1.po diff --git a/manpages/po4a/de/lh_source_debian.en.1.po b/manpages/old/de/lh_source_debian.1.po similarity index 100% rename from manpages/po4a/de/lh_source_debian.en.1.po rename to manpages/old/de/lh_source_debian.1.po diff --git a/manpages/po4a/de/lh_source_disk.en.1.po b/manpages/old/de/lh_source_disk.1.po similarity index 100% rename from manpages/po4a/de/lh_source_disk.en.1.po rename to manpages/old/de/lh_source_disk.1.po diff --git a/manpages/po4a/de/lh_source_iso.en.1.po b/manpages/old/de/lh_source_iso.1.po similarity index 100% rename from manpages/po4a/de/lh_source_iso.en.1.po rename to manpages/old/de/lh_source_iso.1.po diff --git a/manpages/po4a/de/lh_source_net.en.1.po b/manpages/old/de/lh_source_net.1.po similarity index 100% rename from manpages/po4a/de/lh_source_net.en.1.po rename to manpages/old/de/lh_source_net.1.po diff --git a/manpages/po4a/de/lh_source_tar.en.1.po b/manpages/old/de/lh_source_tar.1.po similarity index 100% rename from manpages/po4a/de/lh_source_tar.en.1.po rename to manpages/old/de/lh_source_tar.1.po diff --git a/manpages/po4a/de/lh_source_usb.en.1.po b/manpages/old/de/lh_source_usb.1.po similarity index 100% rename from manpages/po4a/de/lh_source_usb.en.1.po rename to manpages/old/de/lh_source_usb.1.po diff --git a/manpages/po4a/de/lh_source_virtual-hdd.en.1.po b/manpages/old/de/lh_source_virtual-hdd.1.po similarity index 100% rename from manpages/po4a/de/lh_source_virtual-hdd.en.1.po rename to manpages/old/de/lh_source_virtual-hdd.1.po diff --git a/manpages/po4a/de/lh_testroot.en.1.po b/manpages/old/de/lh_testroot.1.po similarity index 100% rename from manpages/po4a/de/lh_testroot.en.1.po rename to manpages/old/de/lh_testroot.1.po diff --git a/manpages/po4a/de/live-helper.en.7.po b/manpages/old/de/live-helper.7.po similarity index 100% rename from manpages/po4a/de/live-helper.en.7.po rename to manpages/old/de/live-helper.7.po diff --git a/manpages/po4a/fr/lh.en.1.po b/manpages/old/fr/lh.1.po similarity index 100% rename from manpages/po4a/fr/lh.en.1.po rename to manpages/old/fr/lh.1.po diff --git a/manpages/po4a/fr/lh_binary.en.1.po b/manpages/old/fr/lh_binary.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary.en.1.po rename to manpages/old/fr/lh_binary.1.po diff --git a/manpages/po4a/fr/lh_binary_encryption.en.1.po b/manpages/old/fr/lh_binary.ryption.en.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_encryption.en.1.po rename to manpages/old/fr/lh_binary.ryption.en.1.po diff --git a/manpages/po4a/fr/lh_binary_checksums.en.1.po b/manpages/old/fr/lh_binary_checksums.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_checksums.en.1.po rename to manpages/old/fr/lh_binary_checksums.1.po diff --git a/manpages/po4a/fr/lh_binary_chroot.en.1.po b/manpages/old/fr/lh_binary_chroot.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_chroot.en.1.po rename to manpages/old/fr/lh_binary_chroot.1.po diff --git a/manpages/po4a/fr/lh_binary_debian-installer.en.1.po b/manpages/old/fr/lh_binary_debian-installer.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_debian-installer.en.1.po rename to manpages/old/fr/lh_binary_debian-installer.1.po diff --git a/manpages/po4a/fr/lh_binary_disk.en.1.po b/manpages/old/fr/lh_binary_disk.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_disk.en.1.po rename to manpages/old/fr/lh_binary_disk.1.po diff --git a/manpages/po4a/fr/lh_binary_grub.en.1.po b/manpages/old/fr/lh_binary_grub.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_grub.en.1.po rename to manpages/old/fr/lh_binary_grub.1.po diff --git a/manpages/po4a/fr/lh_binary_includes.en.1.po b/manpages/old/fr/lh_binary_includes.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_includes.en.1.po rename to manpages/old/fr/lh_binary_includes.1.po diff --git a/manpages/po4a/fr/lh_binary_iso.en.1.po b/manpages/old/fr/lh_binary_iso.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_iso.en.1.po rename to manpages/old/fr/lh_binary_iso.1.po diff --git a/manpages/po4a/fr/lh_binary_linux-image.en.1.po b/manpages/old/fr/lh_binary_linux-image.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_linux-image.en.1.po rename to manpages/old/fr/lh_binary_linux-image.1.po diff --git a/manpages/po4a/fr/lh_binary_local-hooks.en.1.po b/manpages/old/fr/lh_binary_local-hooks.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_local-hooks.en.1.po rename to manpages/old/fr/lh_binary_local-hooks.1.po diff --git a/manpages/po4a/fr/lh_binary_local-includes.en.1.po b/manpages/old/fr/lh_binary_local-includes.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_local-includes.en.1.po rename to manpages/old/fr/lh_binary_local-includes.1.po diff --git a/manpages/po4a/fr/lh_binary_local-packageslists.en.1.po b/manpages/old/fr/lh_binary_local-packageslists.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_local-packageslists.en.1.po rename to manpages/old/fr/lh_binary_local-packageslists.1.po diff --git a/manpages/po4a/fr/lh_binary_manifest.en.1.po b/manpages/old/fr/lh_binary_manifest.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_manifest.en.1.po rename to manpages/old/fr/lh_binary_manifest.1.po diff --git a/manpages/po4a/fr/lh_binary_memtest.en.1.po b/manpages/old/fr/lh_binary_memtest.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_memtest.en.1.po rename to manpages/old/fr/lh_binary_memtest.1.po diff --git a/manpages/po4a/fr/lh_binary_net.en.1.po b/manpages/old/fr/lh_binary_net.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_net.en.1.po rename to manpages/old/fr/lh_binary_net.1.po diff --git a/manpages/po4a/fr/lh_binary_rootfs.en.1.po b/manpages/old/fr/lh_binary_rootfs.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_rootfs.en.1.po rename to manpages/old/fr/lh_binary_rootfs.1.po diff --git a/manpages/po4a/fr/lh_binary_silo.en.1.po b/manpages/old/fr/lh_binary_silo.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_silo.en.1.po rename to manpages/old/fr/lh_binary_silo.1.po diff --git a/manpages/po4a/fr/lh_binary_syslinux.en.1.po b/manpages/old/fr/lh_binary_syslinux.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_syslinux.en.1.po rename to manpages/old/fr/lh_binary_syslinux.1.po diff --git a/manpages/po4a/fr/lh_binary_tar.en.1.po b/manpages/old/fr/lh_binary_tar.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_tar.en.1.po rename to manpages/old/fr/lh_binary_tar.1.po diff --git a/manpages/po4a/fr/lh_binary_usb.en.1.po b/manpages/old/fr/lh_binary_usb.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_usb.en.1.po rename to manpages/old/fr/lh_binary_usb.1.po diff --git a/manpages/po4a/fr/lh_binary_virtual-hdd.en.1.po b/manpages/old/fr/lh_binary_virtual-hdd.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_virtual-hdd.en.1.po rename to manpages/old/fr/lh_binary_virtual-hdd.1.po diff --git a/manpages/po4a/fr/lh_binary_win32-loader.en.1.po b/manpages/old/fr/lh_binary_win32-loader.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_win32-loader.en.1.po rename to manpages/old/fr/lh_binary_win32-loader.1.po diff --git a/manpages/po4a/fr/lh_binary_yaboot.en.1.po b/manpages/old/fr/lh_binary_yaboot.1.po similarity index 100% rename from manpages/po4a/fr/lh_binary_yaboot.en.1.po rename to manpages/old/fr/lh_binary_yaboot.1.po diff --git a/manpages/po4a/fr/lh_bootstrap.en.1.po b/manpages/old/fr/lh_bootstrap.1.po similarity index 100% rename from manpages/po4a/fr/lh_bootstrap.en.1.po rename to manpages/old/fr/lh_bootstrap.1.po diff --git a/manpages/po4a/fr/lh_bootstrap_cache.en.1.po b/manpages/old/fr/lh_bootstrap_cache.1.po similarity index 100% rename from manpages/po4a/fr/lh_bootstrap_cache.en.1.po rename to manpages/old/fr/lh_bootstrap_cache.1.po diff --git a/manpages/po4a/fr/lh_bootstrap_cdebootstrap.en.1.po b/manpages/old/fr/lh_bootstrap_cdebootstrap.1.po similarity index 100% rename from manpages/po4a/fr/lh_bootstrap_cdebootstrap.en.1.po rename to manpages/old/fr/lh_bootstrap_cdebootstrap.1.po diff --git a/manpages/po4a/fr/lh_bootstrap_copy.en.1.po b/manpages/old/fr/lh_bootstrap_copy.1.po similarity index 100% rename from manpages/po4a/fr/lh_bootstrap_copy.en.1.po rename to manpages/old/fr/lh_bootstrap_copy.1.po diff --git a/manpages/po4a/fr/lh_bootstrap_debootstrap.en.1.po b/manpages/old/fr/lh_bootstrap_debootstrap.1.po similarity index 100% rename from manpages/po4a/fr/lh_bootstrap_debootstrap.en.1.po rename to manpages/old/fr/lh_bootstrap_debootstrap.1.po diff --git a/manpages/po4a/fr/lh_build.en.1.po b/manpages/old/fr/lh_build.1.po similarity index 100% rename from manpages/po4a/fr/lh_build.en.1.po rename to manpages/old/fr/lh_build.1.po diff --git a/manpages/po4a/fr/lh_chroot.en.1.po b/manpages/old/fr/lh_chroot.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot.en.1.po rename to manpages/old/fr/lh_chroot.1.po diff --git a/manpages/po4a/fr/lh_chroot_apt.en.1.po b/manpages/old/fr/lh_chroot_apt.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_apt.en.1.po rename to manpages/old/fr/lh_chroot_apt.1.po diff --git a/manpages/po4a/fr/lh_chroot_cache.en.1.po b/manpages/old/fr/lh_chroot_cache.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_cache.en.1.po rename to manpages/old/fr/lh_chroot_cache.1.po diff --git a/manpages/po4a/fr/lh_chroot_debianchroot.en.1.po b/manpages/old/fr/lh_chroot_debianchroot.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_debianchroot.en.1.po rename to manpages/old/fr/lh_chroot_debianchroot.1.po diff --git a/manpages/po4a/fr/lh_chroot_devpts.en.1.po b/manpages/old/fr/lh_chroot_devpts.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_devpts.en.1.po rename to manpages/old/fr/lh_chroot_devpts.1.po diff --git a/manpages/po4a/fr/lh_chroot_dpkg.en.1.po b/manpages/old/fr/lh_chroot_dpkg.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_dpkg.en.1.po rename to manpages/old/fr/lh_chroot_dpkg.1.po diff --git a/manpages/po4a/fr/lh_chroot_hacks.en.1.po b/manpages/old/fr/lh_chroot_hacks.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_hacks.en.1.po rename to manpages/old/fr/lh_chroot_hacks.1.po diff --git a/manpages/po4a/fr/lh_chroot_hooks.en.1.po b/manpages/old/fr/lh_chroot_hooks.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_hooks.en.1.po rename to manpages/old/fr/lh_chroot_hooks.1.po diff --git a/manpages/po4a/fr/lh_chroot_hostname.en.1.po b/manpages/old/fr/lh_chroot_hostname.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_hostname.en.1.po rename to manpages/old/fr/lh_chroot_hostname.1.po diff --git a/manpages/po4a/fr/lh_chroot_hosts.en.1.po b/manpages/old/fr/lh_chroot_hosts.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_hosts.en.1.po rename to manpages/old/fr/lh_chroot_hosts.1.po diff --git a/manpages/po4a/fr/lh_chroot_install-packages.en.1.po b/manpages/old/fr/lh_chroot_install-packages.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_install-packages.en.1.po rename to manpages/old/fr/lh_chroot_install-packages.1.po diff --git a/manpages/po4a/fr/lh_chroot_interactive.en.1.po b/manpages/old/fr/lh_chroot_interactive.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_interactive.en.1.po rename to manpages/old/fr/lh_chroot_interactive.1.po diff --git a/manpages/po4a/fr/lh_chroot_linux-image.en.1.po b/manpages/old/fr/lh_chroot_linux-image.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_linux-image.en.1.po rename to manpages/old/fr/lh_chroot_linux-image.1.po diff --git a/manpages/po4a/fr/lh_chroot_local-hooks.en.1.po b/manpages/old/fr/lh_chroot_local-hooks.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_local-hooks.en.1.po rename to manpages/old/fr/lh_chroot_local-hooks.1.po diff --git a/manpages/po4a/fr/lh_chroot_local-includes.en.1.po b/manpages/old/fr/lh_chroot_local-includes.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_local-includes.en.1.po rename to manpages/old/fr/lh_chroot_local-includes.1.po diff --git a/manpages/po4a/fr/lh_chroot_local-packages.en.1.po b/manpages/old/fr/lh_chroot_local-packages.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_local-packages.en.1.po rename to manpages/old/fr/lh_chroot_local-packages.1.po diff --git a/manpages/po4a/fr/lh_chroot_local-patches.en.1.po b/manpages/old/fr/lh_chroot_local-patches.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_local-patches.en.1.po rename to manpages/old/fr/lh_chroot_local-patches.1.po diff --git a/manpages/po4a/fr/lh_chroot_local-preseed.en.1.po b/manpages/old/fr/lh_chroot_local-preseed.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_local-preseed.en.1.po rename to manpages/old/fr/lh_chroot_local-preseed.1.po diff --git a/manpages/po4a/fr/lh_chroot_localization.en.1.po b/manpages/old/fr/lh_chroot_localization.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_localization.en.1.po rename to manpages/old/fr/lh_chroot_localization.1.po diff --git a/manpages/po4a/fr/lh_chroot_packages.en.1.po b/manpages/old/fr/lh_chroot_packages.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_packages.en.1.po rename to manpages/old/fr/lh_chroot_packages.1.po diff --git a/manpages/po4a/fr/lh_chroot_packageslists.en.1.po b/manpages/old/fr/lh_chroot_packageslists.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_packageslists.en.1.po rename to manpages/old/fr/lh_chroot_packageslists.1.po diff --git a/manpages/po4a/fr/lh_chroot_preseed.en.1.po b/manpages/old/fr/lh_chroot_preseed.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_preseed.en.1.po rename to manpages/old/fr/lh_chroot_preseed.1.po diff --git a/manpages/po4a/fr/lh_chroot_proc.en.1.po b/manpages/old/fr/lh_chroot_proc.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_proc.en.1.po rename to manpages/old/fr/lh_chroot_proc.1.po diff --git a/manpages/po4a/fr/lh_chroot_resolv.en.1.po b/manpages/old/fr/lh_chroot_resolv.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_resolv.en.1.po rename to manpages/old/fr/lh_chroot_resolv.1.po diff --git a/manpages/po4a/fr/lh_chroot_selinuxfs.en.1.po b/manpages/old/fr/lh_chroot_selinuxfs.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_selinuxfs.en.1.po rename to manpages/old/fr/lh_chroot_selinuxfs.1.po diff --git a/manpages/po4a/fr/lh_chroot_sources.en.1.po b/manpages/old/fr/lh_chroot_sources.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_sources.en.1.po rename to manpages/old/fr/lh_chroot_sources.1.po diff --git a/manpages/po4a/fr/lh_chroot_symlinks.en.1.po b/manpages/old/fr/lh_chroot_symlinks.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_symlinks.en.1.po rename to manpages/old/fr/lh_chroot_symlinks.1.po diff --git a/manpages/po4a/fr/lh_chroot_sysfs.en.1.po b/manpages/old/fr/lh_chroot_sysfs.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_sysfs.en.1.po rename to manpages/old/fr/lh_chroot_sysfs.1.po diff --git a/manpages/po4a/fr/lh_chroot_sysv-rc.en.1.po b/manpages/old/fr/lh_chroot_sysv-rc.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_sysv-rc.en.1.po rename to manpages/old/fr/lh_chroot_sysv-rc.1.po diff --git a/manpages/po4a/fr/lh_chroot_sysvinit.en.1.po b/manpages/old/fr/lh_chroot_sysvinit.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_sysvinit.en.1.po rename to manpages/old/fr/lh_chroot_sysvinit.1.po diff --git a/manpages/po4a/fr/lh_chroot_tasks.en.1.po b/manpages/old/fr/lh_chroot_tasks.1.po similarity index 100% rename from manpages/po4a/fr/lh_chroot_tasks.en.1.po rename to manpages/old/fr/lh_chroot_tasks.1.po diff --git a/manpages/po4a/fr/lh_clean.en.1.po b/manpages/old/fr/lh_clean.1.po similarity index 100% rename from manpages/po4a/fr/lh_clean.en.1.po rename to manpages/old/fr/lh_clean.1.po diff --git a/manpages/po4a/fr/lh_config.en.1.po b/manpages/old/fr/lh_config.1.po similarity index 100% rename from manpages/po4a/fr/lh_config.en.1.po rename to manpages/old/fr/lh_config.1.po diff --git a/manpages/po4a/fr/lh_local.en.1.po b/manpages/old/fr/lh_local.1.po similarity index 100% rename from manpages/po4a/fr/lh_local.en.1.po rename to manpages/old/fr/lh_local.1.po diff --git a/manpages/po4a/fr/lh_source.en.1.po b/manpages/old/fr/lh_source.1.po similarity index 100% rename from manpages/po4a/fr/lh_source.en.1.po rename to manpages/old/fr/lh_source.1.po diff --git a/manpages/po4a/fr/lh_source_checksums.en.1.po b/manpages/old/fr/lh_source_checksums.1.po similarity index 100% rename from manpages/po4a/fr/lh_source_checksums.en.1.po rename to manpages/old/fr/lh_source_checksums.1.po diff --git a/manpages/po4a/fr/lh_source_debian-live.en.1.po b/manpages/old/fr/lh_source_debian-live.1.po similarity index 100% rename from manpages/po4a/fr/lh_source_debian-live.en.1.po rename to manpages/old/fr/lh_source_debian-live.1.po diff --git a/manpages/po4a/fr/lh_source_debian.en.1.po b/manpages/old/fr/lh_source_debian.1.po similarity index 100% rename from manpages/po4a/fr/lh_source_debian.en.1.po rename to manpages/old/fr/lh_source_debian.1.po diff --git a/manpages/po4a/fr/lh_source_disk.en.1.po b/manpages/old/fr/lh_source_disk.1.po similarity index 100% rename from manpages/po4a/fr/lh_source_disk.en.1.po rename to manpages/old/fr/lh_source_disk.1.po diff --git a/manpages/po4a/fr/lh_source_iso.en.1.po b/manpages/old/fr/lh_source_iso.1.po similarity index 100% rename from manpages/po4a/fr/lh_source_iso.en.1.po rename to manpages/old/fr/lh_source_iso.1.po diff --git a/manpages/po4a/fr/lh_source_net.en.1.po b/manpages/old/fr/lh_source_net.1.po similarity index 100% rename from manpages/po4a/fr/lh_source_net.en.1.po rename to manpages/old/fr/lh_source_net.1.po diff --git a/manpages/po4a/fr/lh_source_tar.en.1.po b/manpages/old/fr/lh_source_tar.1.po similarity index 100% rename from manpages/po4a/fr/lh_source_tar.en.1.po rename to manpages/old/fr/lh_source_tar.1.po diff --git a/manpages/po4a/fr/lh_source_usb.en.1.po b/manpages/old/fr/lh_source_usb.1.po similarity index 100% rename from manpages/po4a/fr/lh_source_usb.en.1.po rename to manpages/old/fr/lh_source_usb.1.po diff --git a/manpages/po4a/fr/lh_source_virtual-hdd.en.1.po b/manpages/old/fr/lh_source_virtual-hdd.1.po similarity index 100% rename from manpages/po4a/fr/lh_source_virtual-hdd.en.1.po rename to manpages/old/fr/lh_source_virtual-hdd.1.po diff --git a/manpages/po4a/fr/lh_testroot.en.1.po b/manpages/old/fr/lh_testroot.1.po similarity index 100% rename from manpages/po4a/fr/lh_testroot.en.1.po rename to manpages/old/fr/lh_testroot.1.po diff --git a/manpages/po4a/fr/live-helper.en.7.po b/manpages/old/fr/live-helper.7.po similarity index 100% rename from manpages/po4a/fr/live-helper.en.7.po rename to manpages/old/fr/live-helper.7.po diff --git a/manpages/po/de/lh.1.po b/manpages/po/de/lh.1.po new file mode 100644 index 000000000..5e42aa73f --- /dev/null +++ b/manpages/po/de/lh.1.po @@ -0,0 +1,721 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: Plain text +#: en/lh.1:5 +msgid "B - wrapper for live-helper programs" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: Plain text +#: en/lh.1:8 +msgid "B COMMAND [COMMAND_OPTIONS]" +msgstr "" + +#. type: Plain text +#: en/lh.1:10 +msgid "B [I]" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: Plain text +#: en/lh.1:13 +msgid "" +"B is a high-level command (porcelain) of I(7), the Debian " +"Live tool suite." +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: Plain text +#: en/lh.1:18 +msgid "" +"B 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 "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. type: IP +#: en/lh.1:20 en/lh_binary.1:18 en/lh_bootstrap.1:18 en/lh_chroot.1:18 +#: en/lh_local.1:18 en/lh_source.1:18 en/lh_testroot.1:22 +#, no-wrap +msgid "B" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" diff --git a/manpages/po/de/lh_binary.1.po b/manpages/po/de/lh_binary.1.po new file mode 100644 index 000000000..6c1fe5aa3 --- /dev/null +++ b/manpages/po/de/lh_binary.1.po @@ -0,0 +1,723 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. type: IP +#: en/lh.1:20 en/lh_binary.1:18 en/lh_bootstrap.1:18 en/lh_chroot.1:18 +#: en/lh_local.1:18 en/lh_source.1:18 en/lh_testroot.1:22 +#, no-wrap +msgid "B" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:11 +msgid "" +"B is a high-level command (porcelain) of I(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:13 +msgid "" +"B calls all necessary live-helper programs in the correct order " +"to complete the binary stage." +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:16 +msgid "" +"B 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/po/de/lh_binary_checksums.1.po b/manpages/po/de/lh_binary_checksums.1.po new file mode 100644 index 000000000..76216fed9 --- /dev/null +++ b/manpages/po/de/lh_binary_checksums.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:16 +msgid "" +"B 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 "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" diff --git a/manpages/po/de/lh_binary_chroot.1.po b/manpages/po/de/lh_binary_chroot.1.po new file mode 100644 index 000000000..36e6f7694 --- /dev/null +++ b/manpages/po/de/lh_binary_chroot.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:16 +msgid "" +"B 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/po/de/lh_binary_debian-installer.1.po b/manpages/po/de/lh_binary_debian-installer.1.po new file mode 100644 index 000000000..c1236b81a --- /dev/null +++ b/manpages/po/de/lh_binary_debian-installer.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:16 +msgid "" +"B 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/po/de/lh_binary_disk.1.po b/manpages/po/de/lh_binary_disk.1.po new file mode 100644 index 000000000..94d82f97d --- /dev/null +++ b/manpages/po/de/lh_binary_disk.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:16 +msgid "" +"B 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/po/de/lh_binary_encryption.1.po b/manpages/po/de/lh_binary_encryption.1.po new file mode 100644 index 000000000..9c2089201 --- /dev/null +++ b/manpages/po/de/lh_binary_encryption.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:16 +msgid "" +"B 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/po/de/lh_binary_grub.1.po b/manpages/po/de/lh_binary_grub.1.po new file mode 100644 index 000000000..29967a43e --- /dev/null +++ b/manpages/po/de/lh_binary_grub.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:16 +msgid "" +"B 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/po/de/lh_binary_grub2.1.po b/manpages/po/de/lh_binary_grub2.1.po new file mode 100644 index 000000000..c1e0c83e2 --- /dev/null +++ b/manpages/po/de/lh_binary_grub2.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:16 +msgid "" +"B 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/po/de/lh_binary_includes.1.po b/manpages/po/de/lh_binary_includes.1.po new file mode 100644 index 000000000..419a1b14f --- /dev/null +++ b/manpages/po/de/lh_binary_includes.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:16 +msgid "" +"B 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/po/de/lh_binary_iso.1.po b/manpages/po/de/lh_binary_iso.1.po new file mode 100644 index 000000000..a23868bd7 --- /dev/null +++ b/manpages/po/de/lh_binary_iso.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:16 +msgid "" +"B 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/po/de/lh_binary_linux-image.1.po b/manpages/po/de/lh_binary_linux-image.1.po new file mode 100644 index 000000000..2942b30af --- /dev/null +++ b/manpages/po/de/lh_binary_linux-image.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:16 +msgid "" +"B 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/po/de/lh_binary_local-hooks.1.po b/manpages/po/de/lh_binary_local-hooks.1.po new file mode 100644 index 000000000..2727576a9 --- /dev/null +++ b/manpages/po/de/lh_binary_local-hooks.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:16 +msgid "" +"B 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/po/de/lh_binary_local-includes.1.po b/manpages/po/de/lh_binary_local-includes.1.po new file mode 100644 index 000000000..6a9eda9a5 --- /dev/null +++ b/manpages/po/de/lh_binary_local-includes.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:16 +msgid "" +"B 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/po/de/lh_binary_local-packageslists.1.po b/manpages/po/de/lh_binary_local-packageslists.1.po new file mode 100644 index 000000000..7811add94 --- /dev/null +++ b/manpages/po/de/lh_binary_local-packageslists.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:16 +msgid "" +"B 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/po/de/lh_binary_manifest.1.po b/manpages/po/de/lh_binary_manifest.1.po new file mode 100644 index 000000000..94393d4da --- /dev/null +++ b/manpages/po/de/lh_binary_manifest.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:16 +msgid "" +"B 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/po/de/lh_binary_memtest.1.po b/manpages/po/de/lh_binary_memtest.1.po new file mode 100644 index 000000000..4c5c5c6a6 --- /dev/null +++ b/manpages/po/de/lh_binary_memtest.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:16 +msgid "" +"B 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/po/de/lh_binary_net.1.po b/manpages/po/de/lh_binary_net.1.po new file mode 100644 index 000000000..443cf05d2 --- /dev/null +++ b/manpages/po/de/lh_binary_net.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:16 +msgid "" +"B 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/po/de/lh_binary_rootfs.1.po b/manpages/po/de/lh_binary_rootfs.1.po new file mode 100644 index 000000000..5a39da7f6 --- /dev/null +++ b/manpages/po/de/lh_binary_rootfs.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:16 +msgid "" +"B 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/po/de/lh_binary_silo.1.po b/manpages/po/de/lh_binary_silo.1.po new file mode 100644 index 000000000..20e7a00c2 --- /dev/null +++ b/manpages/po/de/lh_binary_silo.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:16 +msgid "" +"B 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/po/de/lh_binary_syslinux.1.po b/manpages/po/de/lh_binary_syslinux.1.po new file mode 100644 index 000000000..9f63f2e2e --- /dev/null +++ b/manpages/po/de/lh_binary_syslinux.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:16 +msgid "" +"B 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/po/de/lh_binary_tar.1.po b/manpages/po/de/lh_binary_tar.1.po new file mode 100644 index 000000000..ac71ae413 --- /dev/null +++ b/manpages/po/de/lh_binary_tar.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:16 +msgid "" +"B 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/po/de/lh_binary_usb.1.po b/manpages/po/de/lh_binary_usb.1.po new file mode 100644 index 000000000..61ded938d --- /dev/null +++ b/manpages/po/de/lh_binary_usb.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:16 +msgid "" +"B 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/po/de/lh_binary_virtual-hdd.1.po b/manpages/po/de/lh_binary_virtual-hdd.1.po new file mode 100644 index 000000000..dbe947c01 --- /dev/null +++ b/manpages/po/de/lh_binary_virtual-hdd.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:16 +msgid "" +"B 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/po/de/lh_binary_win32-loader.1.po b/manpages/po/de/lh_binary_win32-loader.1.po new file mode 100644 index 000000000..a9e99380e --- /dev/null +++ b/manpages/po/de/lh_binary_win32-loader.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:16 +msgid "" +"B 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/po/de/lh_binary_yaboot.1.po b/manpages/po/de/lh_binary_yaboot.1.po new file mode 100644 index 000000000..1df144297 --- /dev/null +++ b/manpages/po/de/lh_binary_yaboot.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:5 +msgid "B - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:16 +msgid "" +"B 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/po/de/lh_bootstrap.1.po b/manpages/po/de/lh_bootstrap.1.po new file mode 100644 index 000000000..6276f7a41 --- /dev/null +++ b/manpages/po/de/lh_bootstrap.1.po @@ -0,0 +1,723 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. type: IP +#: en/lh.1:20 en/lh_binary.1:18 en/lh_bootstrap.1:18 en/lh_chroot.1:18 +#: en/lh_local.1:18 en/lh_source.1:18 en/lh_testroot.1:22 +#, no-wrap +msgid "B" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:5 +msgid "B - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:11 +msgid "" +"B is a high-level command (porcelain) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:13 +msgid "" +"B calls all necessary live-helper programs in the correct " +"order to complete the bootstrap stage." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:16 +msgid "" +"B 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/po/de/lh_bootstrap_cache.1.po b/manpages/po/de/lh_bootstrap_cache.1.po new file mode 100644 index 000000000..11adbf436 --- /dev/null +++ b/manpages/po/de/lh_bootstrap_cache.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:5 +msgid "B - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:16 +msgid "" +"B 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/po/de/lh_bootstrap_cdebootstrap.1.po b/manpages/po/de/lh_bootstrap_cdebootstrap.1.po new file mode 100644 index 000000000..03b6871f8 --- /dev/null +++ b/manpages/po/de/lh_bootstrap_cdebootstrap.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:5 +msgid "B - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:16 +msgid "" +"B 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/po/de/lh_bootstrap_copy.1.po b/manpages/po/de/lh_bootstrap_copy.1.po new file mode 100644 index 000000000..af1b88aa6 --- /dev/null +++ b/manpages/po/de/lh_bootstrap_copy.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:5 +msgid "B - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:16 +msgid "" +"B 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/po/de/lh_bootstrap_debootstrap.1.po b/manpages/po/de/lh_bootstrap_debootstrap.1.po new file mode 100644 index 000000000..28f6312cc --- /dev/null +++ b/manpages/po/de/lh_bootstrap_debootstrap.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:5 +msgid "B - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:16 +msgid "" +"B 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/po/de/lh_build.1.po b/manpages/po/de/lh_build.1.po new file mode 100644 index 000000000..9a990116f --- /dev/null +++ b/manpages/po/de/lh_build.1.po @@ -0,0 +1,723 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_build.1:5 +msgid "B - Complete the bootstrap, chroot, binary, and source stages" +msgstr "" + +#. type: Plain text +#: en/lh_build.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_build.1:11 +msgid "" +"B is a high-level command (porcelain) of I(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_build.1:13 +msgid "" +"B calls all necessary live-helper programs in the correct order to " +"complete the bootstrap, chroot, binary, and source stages." +msgstr "" + +#. type: Plain text +#: en/lh_build.1:16 +msgid "" +"B 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 "" + +#. FIXME +#. type: IP +#: en/lh_build.1:19 en/lh_config.1:430 +#, no-wrap +msgid "B" +msgstr "" diff --git a/manpages/po/de/lh_chroot.1.po b/manpages/po/de/lh_chroot.1.po new file mode 100644 index 000000000..ae0bc2809 --- /dev/null +++ b/manpages/po/de/lh_chroot.1.po @@ -0,0 +1,723 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. type: IP +#: en/lh.1:20 en/lh_binary.1:18 en/lh_bootstrap.1:18 en/lh_chroot.1:18 +#: en/lh_local.1:18 en/lh_source.1:18 en/lh_testroot.1:22 +#, no-wrap +msgid "B" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:11 +msgid "" +"B is a high-level command (porcelain) of I(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:13 +msgid "" +"B calls all necessary live-helper programs in the correct order " +"to complete the chroot stage." +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:16 +msgid "" +"B 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/po/de/lh_chroot_apt.1.po b/manpages/po/de/lh_chroot_apt.1.po new file mode 100644 index 000000000..874844f9b --- /dev/null +++ b/manpages/po/de/lh_chroot_apt.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:16 +msgid "" +"B 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/po/de/lh_chroot_cache.1.po b/manpages/po/de/lh_chroot_cache.1.po new file mode 100644 index 000000000..e0be14fd4 --- /dev/null +++ b/manpages/po/de/lh_chroot_cache.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:16 +msgid "" +"B 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/po/de/lh_chroot_debianchroot.1.po b/manpages/po/de/lh_chroot_debianchroot.1.po new file mode 100644 index 000000000..3b4adc2ee --- /dev/null +++ b/manpages/po/de/lh_chroot_debianchroot.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:16 +msgid "" +"B 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/po/de/lh_chroot_devpts.1.po b/manpages/po/de/lh_chroot_devpts.1.po new file mode 100644 index 000000000..dbf637a79 --- /dev/null +++ b/manpages/po/de/lh_chroot_devpts.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:16 +msgid "" +"B 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/po/de/lh_chroot_dpkg.1.po b/manpages/po/de/lh_chroot_dpkg.1.po new file mode 100644 index 000000000..7e01c1577 --- /dev/null +++ b/manpages/po/de/lh_chroot_dpkg.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:16 +msgid "" +"B 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/po/de/lh_chroot_hacks.1.po b/manpages/po/de/lh_chroot_hacks.1.po new file mode 100644 index 000000000..991fbfd2c --- /dev/null +++ b/manpages/po/de/lh_chroot_hacks.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:16 +msgid "" +"B 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/po/de/lh_chroot_hooks.1.po b/manpages/po/de/lh_chroot_hooks.1.po new file mode 100644 index 000000000..c679e0024 --- /dev/null +++ b/manpages/po/de/lh_chroot_hooks.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:16 +msgid "" +"B 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/po/de/lh_chroot_hostname.1.po b/manpages/po/de/lh_chroot_hostname.1.po new file mode 100644 index 000000000..2af4f71a1 --- /dev/null +++ b/manpages/po/de/lh_chroot_hostname.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:16 +msgid "" +"B 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/po/de/lh_chroot_hosts.1.po b/manpages/po/de/lh_chroot_hosts.1.po new file mode 100644 index 000000000..89a88b631 --- /dev/null +++ b/manpages/po/de/lh_chroot_hosts.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:16 +msgid "" +"B 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/po/de/lh_chroot_install-packages.1.po b/manpages/po/de/lh_chroot_install-packages.1.po new file mode 100644 index 000000000..50ae54b9f --- /dev/null +++ b/manpages/po/de/lh_chroot_install-packages.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:16 +msgid "" +"B 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/po/de/lh_chroot_interactive.1.po b/manpages/po/de/lh_chroot_interactive.1.po new file mode 100644 index 000000000..65fe4a9a0 --- /dev/null +++ b/manpages/po/de/lh_chroot_interactive.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:16 +msgid "" +"B 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/po/de/lh_chroot_linux-image.1.po b/manpages/po/de/lh_chroot_linux-image.1.po new file mode 100644 index 000000000..62b69cab9 --- /dev/null +++ b/manpages/po/de/lh_chroot_linux-image.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:16 +msgid "" +"B 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/po/de/lh_chroot_local-hooks.1.po b/manpages/po/de/lh_chroot_local-hooks.1.po new file mode 100644 index 000000000..c6c1b640c --- /dev/null +++ b/manpages/po/de/lh_chroot_local-hooks.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:16 +msgid "" +"B 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/po/de/lh_chroot_local-includes.1.po b/manpages/po/de/lh_chroot_local-includes.1.po new file mode 100644 index 000000000..fcbc949b0 --- /dev/null +++ b/manpages/po/de/lh_chroot_local-includes.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:16 +msgid "" +"B 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/po/de/lh_chroot_local-packages.1.po b/manpages/po/de/lh_chroot_local-packages.1.po new file mode 100644 index 000000000..eb8d9e4f0 --- /dev/null +++ b/manpages/po/de/lh_chroot_local-packages.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:16 +msgid "" +"B 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/po/de/lh_chroot_local-packageslists.1.po b/manpages/po/de/lh_chroot_local-packageslists.1.po new file mode 100644 index 000000000..6fecda09e --- /dev/null +++ b/manpages/po/de/lh_chroot_local-packageslists.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:16 +msgid "" +"B 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/po/de/lh_chroot_local-patches.1.po b/manpages/po/de/lh_chroot_local-patches.1.po new file mode 100644 index 000000000..167d212e5 --- /dev/null +++ b/manpages/po/de/lh_chroot_local-patches.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:16 +msgid "" +"B 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/po/de/lh_chroot_local-preseed.1.po b/manpages/po/de/lh_chroot_local-preseed.1.po new file mode 100644 index 000000000..7968a97c1 --- /dev/null +++ b/manpages/po/de/lh_chroot_local-preseed.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:16 +msgid "" +"B 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/po/de/lh_chroot_localization.1.po b/manpages/po/de/lh_chroot_localization.1.po new file mode 100644 index 000000000..2be307039 --- /dev/null +++ b/manpages/po/de/lh_chroot_localization.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:16 +msgid "" +"B 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/po/de/lh_chroot_packages.1.po b/manpages/po/de/lh_chroot_packages.1.po new file mode 100644 index 000000000..f5c02aa4d --- /dev/null +++ b/manpages/po/de/lh_chroot_packages.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:16 +msgid "" +"B 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/po/de/lh_chroot_packageslists.1.po b/manpages/po/de/lh_chroot_packageslists.1.po new file mode 100644 index 000000000..d2bdca271 --- /dev/null +++ b/manpages/po/de/lh_chroot_packageslists.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:16 +msgid "" +"B 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/po/de/lh_chroot_preseed.1.po b/manpages/po/de/lh_chroot_preseed.1.po new file mode 100644 index 000000000..6e18e24c0 --- /dev/null +++ b/manpages/po/de/lh_chroot_preseed.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:16 +msgid "" +"B 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/po/de/lh_chroot_proc.1.po b/manpages/po/de/lh_chroot_proc.1.po new file mode 100644 index 000000000..767650066 --- /dev/null +++ b/manpages/po/de/lh_chroot_proc.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:16 +msgid "" +"B 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/po/de/lh_chroot_resolv.1.po b/manpages/po/de/lh_chroot_resolv.1.po new file mode 100644 index 000000000..0d1e28b44 --- /dev/null +++ b/manpages/po/de/lh_chroot_resolv.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:16 +msgid "" +"B 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/po/de/lh_chroot_selinuxfs.1.po b/manpages/po/de/lh_chroot_selinuxfs.1.po new file mode 100644 index 000000000..17c08bbe0 --- /dev/null +++ b/manpages/po/de/lh_chroot_selinuxfs.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:16 +msgid "" +"B 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/po/de/lh_chroot_sources.1.po b/manpages/po/de/lh_chroot_sources.1.po new file mode 100644 index 000000000..378b11bac --- /dev/null +++ b/manpages/po/de/lh_chroot_sources.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:16 +msgid "" +"B 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/po/de/lh_chroot_symlinks.1.po b/manpages/po/de/lh_chroot_symlinks.1.po new file mode 100644 index 000000000..2b0b2a2e5 --- /dev/null +++ b/manpages/po/de/lh_chroot_symlinks.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:16 +msgid "" +"B 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/po/de/lh_chroot_sysfs.1.po b/manpages/po/de/lh_chroot_sysfs.1.po new file mode 100644 index 000000000..bd1ed8dde --- /dev/null +++ b/manpages/po/de/lh_chroot_sysfs.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:16 +msgid "" +"B 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/po/de/lh_chroot_sysv-rc.1.po b/manpages/po/de/lh_chroot_sysv-rc.1.po new file mode 100644 index 000000000..b271ab75f --- /dev/null +++ b/manpages/po/de/lh_chroot_sysv-rc.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:16 +msgid "" +"B 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/po/de/lh_chroot_sysvinit.1.po b/manpages/po/de/lh_chroot_sysvinit.1.po new file mode 100644 index 000000000..d0728d104 --- /dev/null +++ b/manpages/po/de/lh_chroot_sysvinit.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:11 +msgid "" +"B is a low-level command (plumbing) of I" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:16 +msgid "" +"B 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/po/de/lh_chroot_tasks.1.po b/manpages/po/de/lh_chroot_tasks.1.po new file mode 100644 index 000000000..4a25d4218 --- /dev/null +++ b/manpages/po/de/lh_chroot_tasks.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:16 +msgid "" +"B 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/po/de/lh_chroot_upstart.1.po b/manpages/po/de/lh_chroot_upstart.1.po new file mode 100644 index 000000000..2f800ed03 --- /dev/null +++ b/manpages/po/de/lh_chroot_upstart.1.po @@ -0,0 +1,746 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_binary_checksums.1:19 en/lh_binary_chroot.1:19 +#: en/lh_binary_debian-installer.1:19 en/lh_binary_disk.1:19 +#: en/lh_binary_encryption.1:19 en/lh_binary_grub.1:19 en/lh_binary_grub2.1:19 +#: en/lh_binary_includes.1:19 en/lh_binary_iso.1:19 +#: en/lh_binary_linux-image.1:19 en/lh_binary_local-hooks.1:19 +#: en/lh_binary_local-includes.1:19 en/lh_binary_local-packageslists.1:19 +#: en/lh_binary_manifest.1:19 en/lh_binary_memtest.1:19 en/lh_binary_net.1:19 +#: en/lh_binary_rootfs.1:19 en/lh_binary_silo.1:19 en/lh_binary_syslinux.1:19 +#: en/lh_binary_tar.1:19 en/lh_binary_usb.1:19 en/lh_binary_virtual-hdd.1:19 +#: en/lh_binary_win32-loader.1:19 en/lh_binary_yaboot.1:19 +#: en/lh_bootstrap_cache.1:19 en/lh_bootstrap_cdebootstrap.1:19 +#: en/lh_bootstrap_copy.1:19 en/lh_bootstrap_debootstrap.1:19 +#: en/lh_chroot_apt.1:19 en/lh_chroot_cache.1:19 +#: en/lh_chroot_debianchroot.1:19 en/lh_chroot_devpts.1:19 +#: en/lh_chroot_dpkg.1:19 en/lh_chroot_hacks.1:19 en/lh_chroot_hooks.1:19 +#: en/lh_chroot_hostname.1:19 en/lh_chroot_hosts.1:19 +#: en/lh_chroot_install-packages.1:19 en/lh_chroot_interactive.1:19 +#: en/lh_chroot_linux-image.1:19 en/lh_chroot_local-hooks.1:19 +#: en/lh_chroot_local-includes.1:19 en/lh_chroot_localization.1:19 +#: en/lh_chroot_local-packages.1:19 en/lh_chroot_local-packageslists.1:19 +#: en/lh_chroot_local-patches.1:19 en/lh_chroot_local-preseed.1:19 +#: en/lh_chroot_packages.1:19 en/lh_chroot_packageslists.1:19 +#: en/lh_chroot_preseed.1:19 en/lh_chroot_proc.1:19 en/lh_chroot_resolv.1:19 +#: en/lh_chroot_selinuxfs.1:19 en/lh_chroot_sources.1:19 +#: en/lh_chroot_symlinks.1:19 en/lh_chroot_sysfs.1:19 +#: en/lh_chroot_sysvinit.1:19 en/lh_chroot_sysv-rc.1:19 +#: en/lh_chroot_tasks.1:19 en/lh_chroot_upstart.1:19 +#: en/lh_source_checksums.1:19 en/lh_source_debian.1:19 +#: en/lh_source_debian-live.1:19 en/lh_source_disk.1:19 en/lh_source_iso.1:19 +#: en/lh_source_net.1:19 en/lh_source_tar.1:19 en/lh_source_usb.1:19 +#: en/lh_source_virtual-hdd.1:19 en/live-helper.7:241 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:5 +msgid "B - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:11 +msgid "" +"B is a low-level command (plumbing) of I(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:16 +msgid "" +"B 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/po/de/lh_clean.1.po b/manpages/po/de/lh_clean.1.po new file mode 100644 index 000000000..ec3c307cd --- /dev/null +++ b/manpages/po/de/lh_clean.1.po @@ -0,0 +1,821 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:5 +msgid "B - Clean build directory" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:8 +msgid "B [I]" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:11 +msgid "" +"B is a high-level command (porcelain) of I(7), the " +"Debian Live tool suite." +msgstr "" + +#. FIXME +#. FIXME +#. type: Plain text +#: en/lh_clean.1:15 +msgid "" +"B is responsible for cleaning up after a system is built. It " +"removes the build directories, and removes some other files including stage " +"files, and any detritus left behind by other live-helper commands." +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:18 +msgid "" +"In addition to its specific options B understands all generic live-" +"helper options. See I(7) for a complete list of all generic " +"live-helper options." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_clean.1:20 +#, no-wrap +msgid "B<--all>" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:22 +msgid "" +"removes chroot, binary, stage, and source. The cache directory is kept. This " +"is the default operation and will be performed if no argument is given." +msgstr "" + +#. type: IP +#: en/lh_clean.1:22 +#, no-wrap +msgid "B<--cache>" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:24 +msgid "removes the cache directories." +msgstr "" + +#. type: IP +#: en/lh_clean.1:24 +#, no-wrap +msgid "B<--chroot>" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:26 +msgid "unmounts and removes the chroot directory." +msgstr "" + +#. type: IP +#: en/lh_clean.1:26 +#, no-wrap +msgid "B<--binary>" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:28 +msgid "" +"removes all binary related caches, files, directories, and stages files." +msgstr "" + +#. type: IP +#: en/lh_clean.1:28 +#, no-wrap +msgid "B<--purge>" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:30 +msgid "removes everything, including all caches. The config directory is kept." +msgstr "" + +#. type: IP +#: en/lh_clean.1:30 +#, no-wrap +msgid "B<--remove>" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:32 +msgid "" +"removes everything, including package cache but not stage cache. The config " +"directory is kept." +msgstr "" + +#. type: IP +#: en/lh_clean.1:32 +#, no-wrap +msgid "B<--stage>" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:34 +msgid "removes all stage files." +msgstr "" + +#. type: IP +#: en/lh_clean.1:34 +#, no-wrap +msgid "B<--source>" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_clean.1:37 +msgid "removes all source related caches, files, directories, and stage files." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_clean.1:40 +#, no-wrap +msgid "B" +msgstr "" diff --git a/manpages/po/de/lh_config.1.po b/manpages/po/de/lh_config.1.po new file mode 100644 index 000000000..67a34e4a6 --- /dev/null +++ b/manpages/po/de/lh_config.1.po @@ -0,0 +1,2680 @@ +# German translations for PACKAGE package +# Copyright (C) 2010 Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# Automatically generated, 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: 2010-05-08 18:42+0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "LIVE-HELPER" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2010-05-08" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "2.0~a11" +msgstr "" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_source_usb.1:1 +#: en/lh_source_virtual-hdd.1:1 en/lh_testroot.1:1 en/live-helper.7:1 +#, no-wrap +msgid "Debian Live Project" +msgstr "" + +#. type: SH +#: en/lh.1:3 en/lh_binary.1:3 en/lh_binary_checksums.1:3 +#: en/lh_binary_chroot.1:3 en/lh_binary_debian-installer.1:3 +#: en/lh_binary_disk.1:3 en/lh_binary_encryption.1:3 en/lh_binary_grub.1:3 +#: en/lh_binary_grub2.1:3 en/lh_binary_includes.1:3 en/lh_binary_iso.1:3 +#: en/lh_binary_linux-image.1:3 en/lh_binary_local-hooks.1:3 +#: en/lh_binary_local-includes.1:3 en/lh_binary_local-packageslists.1:3 +#: en/lh_binary_manifest.1:3 en/lh_binary_memtest.1:3 en/lh_binary_net.1:3 +#: en/lh_binary_rootfs.1:3 en/lh_binary_silo.1:3 en/lh_binary_syslinux.1:3 +#: en/lh_binary_tar.1:3 en/lh_binary_usb.1:3 en/lh_binary_virtual-hdd.1:3 +#: en/lh_binary_win32-loader.1:3 en/lh_binary_yaboot.1:3 en/lh_bootstrap.1:3 +#: en/lh_bootstrap_cache.1:3 en/lh_bootstrap_cdebootstrap.1:3 +#: en/lh_bootstrap_copy.1:3 en/lh_bootstrap_debootstrap.1:3 en/lh_build.1:3 +#: en/lh_chroot.1:3 en/lh_chroot_apt.1:3 en/lh_chroot_cache.1:3 +#: en/lh_chroot_debianchroot.1:3 en/lh_chroot_devpts.1:3 en/lh_chroot_dpkg.1:3 +#: en/lh_chroot_hacks.1:3 en/lh_chroot_hooks.1:3 en/lh_chroot_hostname.1:3 +#: en/lh_chroot_hosts.1:3 en/lh_chroot_install-packages.1:3 +#: en/lh_chroot_interactive.1:3 en/lh_chroot_linux-image.1:3 +#: en/lh_chroot_local-hooks.1:3 en/lh_chroot_local-includes.1:3 +#: en/lh_chroot_localization.1:3 en/lh_chroot_local-packages.1:3 +#: en/lh_chroot_local-packageslists.1:3 en/lh_chroot_local-patches.1:3 +#: en/lh_chroot_local-preseed.1:3 en/lh_chroot_packages.1:3 +#: en/lh_chroot_packageslists.1:3 en/lh_chroot_preseed.1:3 +#: en/lh_chroot_proc.1:3 en/lh_chroot_resolv.1:3 en/lh_chroot_selinuxfs.1:3 +#: en/lh_chroot_sources.1:3 en/lh_chroot_symlinks.1:3 en/lh_chroot_sysfs.1:3 +#: en/lh_chroot_sysvinit.1:3 en/lh_chroot_sysv-rc.1:3 en/lh_chroot_tasks.1:3 +#: en/lh_chroot_upstart.1:3 en/lh_clean.1:3 en/lh_config.1:3 en/lh_local.1:3 +#: en/lh_source.1:3 en/lh_source_checksums.1:3 en/lh_source_debian.1:3 +#: en/lh_source_debian-live.1:3 en/lh_source_disk.1:3 en/lh_source_iso.1:3 +#: en/lh_source_net.1:3 en/lh_source_tar.1:3 en/lh_source_usb.1:3 +#: en/lh_source_virtual-hdd.1:3 en/lh_testroot.1:3 en/live-helper.7:3 +#, no-wrap +msgid "NAME" +msgstr "" + +#. type: SH +#: en/lh.1:6 en/lh_binary.1:6 en/lh_binary_checksums.1:6 +#: en/lh_binary_chroot.1:6 en/lh_binary_debian-installer.1:6 +#: en/lh_binary_disk.1:6 en/lh_binary_encryption.1:6 en/lh_binary_grub.1:6 +#: en/lh_binary_grub2.1:6 en/lh_binary_includes.1:6 en/lh_binary_iso.1:6 +#: en/lh_binary_linux-image.1:6 en/lh_binary_local-hooks.1:6 +#: en/lh_binary_local-includes.1:6 en/lh_binary_local-packageslists.1:6 +#: en/lh_binary_manifest.1:6 en/lh_binary_memtest.1:6 en/lh_binary_net.1:6 +#: en/lh_binary_rootfs.1:6 en/lh_binary_silo.1:6 en/lh_binary_syslinux.1:6 +#: en/lh_binary_tar.1:6 en/lh_binary_usb.1:6 en/lh_binary_virtual-hdd.1:6 +#: en/lh_binary_win32-loader.1:6 en/lh_binary_yaboot.1:6 en/lh_bootstrap.1:6 +#: en/lh_bootstrap_cache.1:6 en/lh_bootstrap_cdebootstrap.1:6 +#: en/lh_bootstrap_copy.1:6 en/lh_bootstrap_debootstrap.1:6 en/lh_build.1:6 +#: en/lh_chroot.1:6 en/lh_chroot_apt.1:6 en/lh_chroot_cache.1:6 +#: en/lh_chroot_debianchroot.1:6 en/lh_chroot_devpts.1:6 en/lh_chroot_dpkg.1:6 +#: en/lh_chroot_hacks.1:6 en/lh_chroot_hooks.1:6 en/lh_chroot_hostname.1:6 +#: en/lh_chroot_hosts.1:6 en/lh_chroot_install-packages.1:6 +#: en/lh_chroot_interactive.1:6 en/lh_chroot_linux-image.1:6 +#: en/lh_chroot_local-hooks.1:6 en/lh_chroot_local-includes.1:6 +#: en/lh_chroot_localization.1:6 en/lh_chroot_local-packages.1:6 +#: en/lh_chroot_local-packageslists.1:6 en/lh_chroot_local-patches.1:6 +#: en/lh_chroot_local-preseed.1:6 en/lh_chroot_packages.1:6 +#: en/lh_chroot_packageslists.1:6 en/lh_chroot_preseed.1:6 +#: en/lh_chroot_proc.1:6 en/lh_chroot_resolv.1:6 en/lh_chroot_selinuxfs.1:6 +#: en/lh_chroot_sources.1:6 en/lh_chroot_symlinks.1:6 en/lh_chroot_sysfs.1:6 +#: en/lh_chroot_sysvinit.1:6 en/lh_chroot_sysv-rc.1:6 en/lh_chroot_tasks.1:6 +#: en/lh_chroot_upstart.1:6 en/lh_clean.1:6 en/lh_config.1:6 en/lh_local.1:6 +#: en/lh_source.1:6 en/lh_source_checksums.1:6 en/lh_source_debian.1:6 +#: en/lh_source_debian-live.1:6 en/lh_source_disk.1:6 en/lh_source_iso.1:6 +#: en/lh_source_net.1:6 en/lh_source_tar.1:6 en/lh_source_usb.1:6 +#: en/lh_source_virtual-hdd.1:6 en/lh_testroot.1:6 en/live-helper.7:6 +#, no-wrap +msgid "SYNOPSIS" +msgstr "" + +#. type: SH +#: en/lh.1:11 en/lh_binary.1:9 en/lh_binary_checksums.1:9 +#: en/lh_binary_chroot.1:9 en/lh_binary_debian-installer.1:9 +#: en/lh_binary_disk.1:9 en/lh_binary_encryption.1:9 en/lh_binary_grub.1:9 +#: en/lh_binary_grub2.1:9 en/lh_binary_includes.1:9 en/lh_binary_iso.1:9 +#: en/lh_binary_linux-image.1:9 en/lh_binary_local-hooks.1:9 +#: en/lh_binary_local-includes.1:9 en/lh_binary_local-packageslists.1:9 +#: en/lh_binary_manifest.1:9 en/lh_binary_memtest.1:9 en/lh_binary_net.1:9 +#: en/lh_binary_rootfs.1:9 en/lh_binary_silo.1:9 en/lh_binary_syslinux.1:9 +#: en/lh_binary_tar.1:9 en/lh_binary_usb.1:9 en/lh_binary_virtual-hdd.1:9 +#: en/lh_binary_win32-loader.1:9 en/lh_binary_yaboot.1:9 en/lh_bootstrap.1:9 +#: en/lh_bootstrap_cache.1:9 en/lh_bootstrap_cdebootstrap.1:9 +#: en/lh_bootstrap_copy.1:9 en/lh_bootstrap_debootstrap.1:9 en/lh_build.1:9 +#: en/lh_chroot.1:9 en/lh_chroot_apt.1:9 en/lh_chroot_cache.1:9 +#: en/lh_chroot_debianchroot.1:9 en/lh_chroot_devpts.1:9 en/lh_chroot_dpkg.1:9 +#: en/lh_chroot_hacks.1:9 en/lh_chroot_hooks.1:9 en/lh_chroot_hostname.1:9 +#: en/lh_chroot_hosts.1:9 en/lh_chroot_install-packages.1:9 +#: en/lh_chroot_interactive.1:9 en/lh_chroot_linux-image.1:9 +#: en/lh_chroot_local-hooks.1:9 en/lh_chroot_local-includes.1:9 +#: en/lh_chroot_localization.1:9 en/lh_chroot_local-packages.1:9 +#: en/lh_chroot_local-packageslists.1:9 en/lh_chroot_local-patches.1:9 +#: en/lh_chroot_local-preseed.1:9 en/lh_chroot_packages.1:9 +#: en/lh_chroot_packageslists.1:9 en/lh_chroot_preseed.1:9 +#: en/lh_chroot_proc.1:9 en/lh_chroot_resolv.1:9 en/lh_chroot_selinuxfs.1:9 +#: en/lh_chroot_sources.1:9 en/lh_chroot_symlinks.1:9 en/lh_chroot_sysfs.1:9 +#: en/lh_chroot_sysvinit.1:9 en/lh_chroot_sysv-rc.1:9 en/lh_chroot_tasks.1:9 +#: en/lh_chroot_upstart.1:9 en/lh_clean.1:9 en/lh_config.1:207 en/lh_local.1:9 +#: en/lh_source.1:9 en/lh_source_checksums.1:9 en/lh_source_debian.1:9 +#: en/lh_source_debian-live.1:9 en/lh_source_disk.1:9 en/lh_source_iso.1:9 +#: en/lh_source_net.1:9 en/lh_source_tar.1:9 en/lh_source_usb.1:9 +#: en/lh_source_virtual-hdd.1:9 en/lh_testroot.1:9 en/live-helper.7:11 +#, no-wrap +msgid "DESCRIPTION" +msgstr "" + +#. type: SH +#: en/lh.1:16 en/lh_binary.1:14 en/lh_binary_checksums.1:14 +#: en/lh_binary_chroot.1:14 en/lh_binary_debian-installer.1:14 +#: en/lh_binary_disk.1:14 en/lh_binary_encryption.1:14 en/lh_binary_grub.1:14 +#: en/lh_binary_grub2.1:14 en/lh_binary_includes.1:14 en/lh_binary_iso.1:14 +#: en/lh_binary_linux-image.1:14 en/lh_binary_local-hooks.1:14 +#: en/lh_binary_local-includes.1:14 en/lh_binary_local-packageslists.1:14 +#: en/lh_binary_manifest.1:14 en/lh_binary_memtest.1:14 en/lh_binary_net.1:14 +#: en/lh_binary_rootfs.1:14 en/lh_binary_silo.1:14 en/lh_binary_syslinux.1:14 +#: en/lh_binary_tar.1:14 en/lh_binary_usb.1:14 en/lh_binary_virtual-hdd.1:14 +#: en/lh_binary_win32-loader.1:14 en/lh_binary_yaboot.1:14 +#: en/lh_bootstrap.1:14 en/lh_bootstrap_cache.1:14 +#: en/lh_bootstrap_cdebootstrap.1:14 en/lh_bootstrap_copy.1:14 +#: en/lh_bootstrap_debootstrap.1:14 en/lh_build.1:14 en/lh_chroot.1:14 +#: en/lh_chroot_apt.1:14 en/lh_chroot_cache.1:14 +#: en/lh_chroot_debianchroot.1:14 en/lh_chroot_devpts.1:14 +#: en/lh_chroot_dpkg.1:14 en/lh_chroot_hacks.1:14 en/lh_chroot_hooks.1:14 +#: en/lh_chroot_hostname.1:14 en/lh_chroot_hosts.1:14 +#: en/lh_chroot_install-packages.1:14 en/lh_chroot_interactive.1:14 +#: en/lh_chroot_linux-image.1:14 en/lh_chroot_local-hooks.1:14 +#: en/lh_chroot_local-includes.1:14 en/lh_chroot_localization.1:14 +#: en/lh_chroot_local-packages.1:14 en/lh_chroot_local-packageslists.1:14 +#: en/lh_chroot_local-patches.1:14 en/lh_chroot_local-preseed.1:14 +#: en/lh_chroot_packages.1:14 en/lh_chroot_packageslists.1:14 +#: en/lh_chroot_preseed.1:14 en/lh_chroot_proc.1:14 en/lh_chroot_resolv.1:14 +#: en/lh_chroot_selinuxfs.1:14 en/lh_chroot_sources.1:14 +#: en/lh_chroot_symlinks.1:14 en/lh_chroot_sysfs.1:14 +#: en/lh_chroot_sysvinit.1:14 en/lh_chroot_sysv-rc.1:14 +#: en/lh_chroot_tasks.1:14 en/lh_chroot_upstart.1:14 en/lh_clean.1:16 +#: en/lh_config.1:216 en/lh_local.1:14 en/lh_source.1:14 +#: en/lh_source_checksums.1:14 en/lh_source_debian.1:14 +#: en/lh_source_debian-live.1:14 en/lh_source_disk.1:14 en/lh_source_iso.1:14 +#: en/lh_source_net.1:14 en/lh_source_tar.1:14 en/lh_source_usb.1:14 +#: en/lh_source_virtual-hdd.1:14 en/lh_testroot.1:18 en/live-helper.7:20 +#, no-wrap +msgid "OPTIONS" +msgstr "" + +#. type: SH +#: en/lh.1:19 en/lh_binary.1:17 en/lh_binary_checksums.1:17 +#: en/lh_binary_chroot.1:17 en/lh_binary_debian-installer.1:17 +#: en/lh_binary_disk.1:17 en/lh_binary_encryption.1:17 en/lh_binary_grub.1:17 +#: en/lh_binary_grub2.1:17 en/lh_binary_includes.1:17 en/lh_binary_iso.1:17 +#: en/lh_binary_linux-image.1:17 en/lh_binary_local-hooks.1:17 +#: en/lh_binary_local-includes.1:17 en/lh_binary_local-packageslists.1:17 +#: en/lh_binary_manifest.1:17 en/lh_binary_memtest.1:17 en/lh_binary_net.1:17 +#: en/lh_binary_rootfs.1:17 en/lh_binary_silo.1:17 en/lh_binary_syslinux.1:17 +#: en/lh_binary_tar.1:17 en/lh_binary_usb.1:17 en/lh_binary_virtual-hdd.1:17 +#: en/lh_binary_win32-loader.1:17 en/lh_binary_yaboot.1:17 +#: en/lh_bootstrap.1:17 en/lh_bootstrap_cache.1:17 +#: en/lh_bootstrap_cdebootstrap.1:17 en/lh_bootstrap_copy.1:17 +#: en/lh_bootstrap_debootstrap.1:17 en/lh_build.1:17 en/lh_chroot.1:17 +#: en/lh_chroot_apt.1:17 en/lh_chroot_cache.1:17 +#: en/lh_chroot_debianchroot.1:17 en/lh_chroot_devpts.1:17 +#: en/lh_chroot_dpkg.1:17 en/lh_chroot_hacks.1:17 en/lh_chroot_hooks.1:17 +#: en/lh_chroot_hostname.1:17 en/lh_chroot_hosts.1:17 +#: en/lh_chroot_install-packages.1:17 en/lh_chroot_interactive.1:17 +#: en/lh_chroot_linux-image.1:17 en/lh_chroot_local-hooks.1:17 +#: en/lh_chroot_local-includes.1:17 en/lh_chroot_localization.1:17 +#: en/lh_chroot_local-packages.1:17 en/lh_chroot_local-packageslists.1:17 +#: en/lh_chroot_local-patches.1:17 en/lh_chroot_local-preseed.1:17 +#: en/lh_chroot_packages.1:17 en/lh_chroot_packageslists.1:17 +#: en/lh_chroot_preseed.1:17 en/lh_chroot_proc.1:17 en/lh_chroot_resolv.1:17 +#: en/lh_chroot_selinuxfs.1:17 en/lh_chroot_sources.1:17 +#: en/lh_chroot_symlinks.1:17 en/lh_chroot_sysfs.1:17 +#: en/lh_chroot_sysvinit.1:17 en/lh_chroot_sysv-rc.1:17 +#: en/lh_chroot_tasks.1:17 en/lh_chroot_upstart.1:17 en/lh_clean.1:38 +#: en/lh_config.1:428 en/lh_local.1:17 en/lh_source.1:17 +#: en/lh_source_checksums.1:17 en/lh_source_debian.1:17 +#: en/lh_source_debian-live.1:17 en/lh_source_disk.1:17 en/lh_source_iso.1:17 +#: en/lh_source_net.1:17 en/lh_source_tar.1:17 en/lh_source_usb.1:17 +#: en/lh_source_virtual-hdd.1:17 en/lh_testroot.1:21 en/live-helper.7:239 +#, no-wrap +msgid "FILES" +msgstr "" + +#. FIXME +#. type: SH +#: en/lh.1:22 en/lh_binary.1:20 en/lh_binary_checksums.1:21 +#: en/lh_binary_chroot.1:21 en/lh_binary_debian-installer.1:21 +#: en/lh_binary_disk.1:21 en/lh_binary_encryption.1:21 en/lh_binary_grub.1:21 +#: en/lh_binary_grub2.1:21 en/lh_binary_includes.1:21 en/lh_binary_iso.1:21 +#: en/lh_binary_linux-image.1:21 en/lh_binary_local-hooks.1:21 +#: en/lh_binary_local-includes.1:21 en/lh_binary_local-packageslists.1:21 +#: en/lh_binary_manifest.1:21 en/lh_binary_memtest.1:21 en/lh_binary_net.1:21 +#: en/lh_binary_rootfs.1:21 en/lh_binary_silo.1:21 en/lh_binary_syslinux.1:21 +#: en/lh_binary_tar.1:21 en/lh_binary_usb.1:21 en/lh_binary_virtual-hdd.1:21 +#: en/lh_binary_win32-loader.1:21 en/lh_binary_yaboot.1:21 +#: en/lh_bootstrap.1:20 en/lh_bootstrap_cache.1:21 +#: en/lh_bootstrap_cdebootstrap.1:21 en/lh_bootstrap_copy.1:21 +#: en/lh_bootstrap_debootstrap.1:21 en/lh_build.1:22 en/lh_chroot.1:20 +#: en/lh_chroot_apt.1:21 en/lh_chroot_cache.1:21 +#: en/lh_chroot_debianchroot.1:21 en/lh_chroot_devpts.1:21 +#: en/lh_chroot_dpkg.1:21 en/lh_chroot_hacks.1:21 en/lh_chroot_hooks.1:21 +#: en/lh_chroot_hostname.1:21 en/lh_chroot_hosts.1:21 +#: en/lh_chroot_install-packages.1:21 en/lh_chroot_interactive.1:21 +#: en/lh_chroot_linux-image.1:21 en/lh_chroot_local-hooks.1:21 +#: en/lh_chroot_local-includes.1:21 en/lh_chroot_localization.1:21 +#: en/lh_chroot_local-packages.1:21 en/lh_chroot_local-packageslists.1:21 +#: en/lh_chroot_local-patches.1:21 en/lh_chroot_local-preseed.1:21 +#: en/lh_chroot_packages.1:21 en/lh_chroot_packageslists.1:21 +#: en/lh_chroot_preseed.1:21 en/lh_chroot_proc.1:21 en/lh_chroot_resolv.1:21 +#: en/lh_chroot_selinuxfs.1:21 en/lh_chroot_sources.1:21 +#: en/lh_chroot_symlinks.1:21 en/lh_chroot_sysfs.1:21 +#: en/lh_chroot_sysvinit.1:21 en/lh_chroot_sysv-rc.1:21 +#: en/lh_chroot_tasks.1:21 en/lh_chroot_upstart.1:21 en/lh_clean.1:43 +#: en/lh_config.1:435 en/lh_local.1:20 en/lh_source.1:20 +#: en/lh_source_checksums.1:21 en/lh_source_debian.1:21 +#: en/lh_source_debian-live.1:21 en/lh_source_disk.1:21 en/lh_source_iso.1:21 +#: en/lh_source_net.1:21 en/lh_source_tar.1:21 en/lh_source_usb.1:21 +#: en/lh_source_virtual-hdd.1:21 en/lh_testroot.1:24 en/live-helper.7:244 +#, no-wrap +msgid "SEE ALSO" +msgstr "" + +#. type: Plain text +#: en/lh.1:24 en/lh_binary.1:22 en/lh_binary_checksums.1:23 +#: en/lh_binary_chroot.1:23 en/lh_binary_debian-installer.1:23 +#: en/lh_binary_disk.1:23 en/lh_binary_encryption.1:23 en/lh_binary_grub.1:23 +#: en/lh_binary_grub2.1:23 en/lh_binary_includes.1:23 en/lh_binary_iso.1:23 +#: en/lh_binary_linux-image.1:23 en/lh_binary_local-hooks.1:23 +#: en/lh_binary_local-includes.1:23 en/lh_binary_local-packageslists.1:23 +#: en/lh_binary_manifest.1:23 en/lh_binary_memtest.1:23 en/lh_binary_net.1:23 +#: en/lh_binary_rootfs.1:23 en/lh_binary_silo.1:23 en/lh_binary_syslinux.1:23 +#: en/lh_binary_tar.1:23 en/lh_binary_usb.1:23 en/lh_binary_virtual-hdd.1:23 +#: en/lh_binary_win32-loader.1:23 en/lh_binary_yaboot.1:23 +#: en/lh_bootstrap.1:22 en/lh_bootstrap_cache.1:23 +#: en/lh_bootstrap_cdebootstrap.1:23 en/lh_bootstrap_copy.1:23 +#: en/lh_bootstrap_debootstrap.1:23 en/lh_build.1:24 en/lh_chroot.1:22 +#: en/lh_chroot_apt.1:23 en/lh_chroot_cache.1:23 +#: en/lh_chroot_debianchroot.1:23 en/lh_chroot_devpts.1:23 +#: en/lh_chroot_dpkg.1:23 en/lh_chroot_hacks.1:23 en/lh_chroot_hooks.1:23 +#: en/lh_chroot_hostname.1:23 en/lh_chroot_hosts.1:23 +#: en/lh_chroot_install-packages.1:23 en/lh_chroot_interactive.1:23 +#: en/lh_chroot_linux-image.1:23 en/lh_chroot_local-hooks.1:23 +#: en/lh_chroot_local-includes.1:23 en/lh_chroot_localization.1:23 +#: en/lh_chroot_local-packages.1:23 en/lh_chroot_local-packageslists.1:23 +#: en/lh_chroot_local-patches.1:23 en/lh_chroot_local-preseed.1:23 +#: en/lh_chroot_packages.1:23 en/lh_chroot_packageslists.1:23 +#: en/lh_chroot_preseed.1:23 en/lh_chroot_proc.1:23 en/lh_chroot_resolv.1:23 +#: en/lh_chroot_selinuxfs.1:23 en/lh_chroot_sources.1:23 +#: en/lh_chroot_symlinks.1:23 en/lh_chroot_sysfs.1:23 +#: en/lh_chroot_sysvinit.1:23 en/lh_chroot_sysv-rc.1:23 +#: en/lh_chroot_tasks.1:23 en/lh_chroot_upstart.1:23 en/lh_clean.1:45 +#: en/lh_config.1:437 en/lh_local.1:22 en/lh_source.1:22 +#: en/lh_source_checksums.1:23 en/lh_source_debian.1:23 +#: en/lh_source_debian-live.1:23 en/lh_source_disk.1:23 en/lh_source_iso.1:23 +#: en/lh_source_net.1:23 en/lh_source_tar.1:23 en/lh_source_usb.1:23 +#: en/lh_source_virtual-hdd.1:23 en/lh_testroot.1:26 +msgid "I(7)" +msgstr "" + +#. type: Plain text +#: en/lh.1:26 en/lh_binary.1:24 en/lh_binary_checksums.1:25 +#: en/lh_binary_chroot.1:25 en/lh_binary_debian-installer.1:25 +#: en/lh_binary_disk.1:25 en/lh_binary_encryption.1:25 en/lh_binary_grub.1:25 +#: en/lh_binary_grub2.1:25 en/lh_binary_includes.1:25 en/lh_binary_iso.1:25 +#: en/lh_binary_linux-image.1:25 en/lh_binary_local-hooks.1:25 +#: en/lh_binary_local-includes.1:25 en/lh_binary_local-packageslists.1:25 +#: en/lh_binary_manifest.1:25 en/lh_binary_memtest.1:25 en/lh_binary_net.1:25 +#: en/lh_binary_rootfs.1:25 en/lh_binary_silo.1:25 en/lh_binary_syslinux.1:25 +#: en/lh_binary_tar.1:25 en/lh_binary_usb.1:25 en/lh_binary_virtual-hdd.1:25 +#: en/lh_binary_win32-loader.1:25 en/lh_binary_yaboot.1:25 +#: en/lh_bootstrap.1:24 en/lh_bootstrap_cache.1:25 +#: en/lh_bootstrap_cdebootstrap.1:25 en/lh_bootstrap_copy.1:25 +#: en/lh_bootstrap_debootstrap.1:25 en/lh_build.1:26 en/lh_chroot.1:24 +#: en/lh_chroot_apt.1:25 en/lh_chroot_cache.1:25 +#: en/lh_chroot_debianchroot.1:25 en/lh_chroot_devpts.1:25 +#: en/lh_chroot_dpkg.1:25 en/lh_chroot_hacks.1:25 en/lh_chroot_hooks.1:25 +#: en/lh_chroot_hostname.1:25 en/lh_chroot_hosts.1:25 +#: en/lh_chroot_install-packages.1:25 en/lh_chroot_interactive.1:25 +#: en/lh_chroot_linux-image.1:25 en/lh_chroot_local-hooks.1:25 +#: en/lh_chroot_local-includes.1:25 en/lh_chroot_localization.1:25 +#: en/lh_chroot_local-packages.1:25 en/lh_chroot_local-packageslists.1:25 +#: en/lh_chroot_local-patches.1:25 en/lh_chroot_local-preseed.1:25 +#: en/lh_chroot_packages.1:25 en/lh_chroot_packageslists.1:25 +#: en/lh_chroot_preseed.1:25 en/lh_chroot_proc.1:25 en/lh_chroot_resolv.1:25 +#: en/lh_chroot_selinuxfs.1:25 en/lh_chroot_sources.1:25 +#: en/lh_chroot_symlinks.1:25 en/lh_chroot_sysfs.1:25 +#: en/lh_chroot_sysvinit.1:25 en/lh_chroot_sysv-rc.1:25 +#: en/lh_chroot_tasks.1:25 en/lh_chroot_upstart.1:25 en/lh_clean.1:47 +#: en/lh_config.1:439 en/lh_local.1:24 en/lh_source.1:24 +#: en/lh_source_checksums.1:25 en/lh_source_debian.1:25 +#: en/lh_source_debian-live.1:25 en/lh_source_disk.1:25 en/lh_source_iso.1:25 +#: en/lh_source_net.1:25 en/lh_source_tar.1:25 en/lh_source_usb.1:25 +#: en/lh_source_virtual-hdd.1:25 en/lh_testroot.1:28 en/live-helper.7:248 +msgid "This program is a part of live-helper." +msgstr "" + +#. type: SH +#: en/lh.1:27 en/lh_binary.1:25 en/lh_binary_checksums.1:26 +#: en/lh_binary_chroot.1:26 en/lh_binary_debian-installer.1:26 +#: en/lh_binary_disk.1:26 en/lh_binary_encryption.1:26 en/lh_binary_grub.1:26 +#: en/lh_binary_grub2.1:26 en/lh_binary_includes.1:26 en/lh_binary_iso.1:26 +#: en/lh_binary_linux-image.1:26 en/lh_binary_local-hooks.1:26 +#: en/lh_binary_local-includes.1:26 en/lh_binary_local-packageslists.1:26 +#: en/lh_binary_manifest.1:26 en/lh_binary_memtest.1:26 en/lh_binary_net.1:26 +#: en/lh_binary_rootfs.1:26 en/lh_binary_silo.1:26 en/lh_binary_syslinux.1:26 +#: en/lh_binary_tar.1:26 en/lh_binary_usb.1:26 en/lh_binary_virtual-hdd.1:26 +#: en/lh_binary_win32-loader.1:26 en/lh_binary_yaboot.1:26 +#: en/lh_bootstrap.1:25 en/lh_bootstrap_cache.1:26 +#: en/lh_bootstrap_cdebootstrap.1:26 en/lh_bootstrap_copy.1:26 +#: en/lh_bootstrap_debootstrap.1:26 en/lh_build.1:27 en/lh_chroot.1:25 +#: en/lh_chroot_apt.1:26 en/lh_chroot_cache.1:26 +#: en/lh_chroot_debianchroot.1:26 en/lh_chroot_devpts.1:26 +#: en/lh_chroot_dpkg.1:26 en/lh_chroot_hacks.1:26 en/lh_chroot_hooks.1:26 +#: en/lh_chroot_hostname.1:26 en/lh_chroot_hosts.1:26 +#: en/lh_chroot_install-packages.1:26 en/lh_chroot_interactive.1:26 +#: en/lh_chroot_linux-image.1:26 en/lh_chroot_local-hooks.1:26 +#: en/lh_chroot_local-includes.1:26 en/lh_chroot_localization.1:26 +#: en/lh_chroot_local-packages.1:26 en/lh_chroot_local-packageslists.1:26 +#: en/lh_chroot_local-patches.1:26 en/lh_chroot_local-preseed.1:26 +#: en/lh_chroot_packages.1:26 en/lh_chroot_packageslists.1:26 +#: en/lh_chroot_preseed.1:26 en/lh_chroot_proc.1:26 en/lh_chroot_resolv.1:26 +#: en/lh_chroot_selinuxfs.1:26 en/lh_chroot_sources.1:26 +#: en/lh_chroot_symlinks.1:26 en/lh_chroot_sysfs.1:26 +#: en/lh_chroot_sysvinit.1:26 en/lh_chroot_sysv-rc.1:26 +#: en/lh_chroot_tasks.1:26 en/lh_chroot_upstart.1:26 en/lh_clean.1:48 +#: en/lh_config.1:440 en/lh_local.1:25 en/lh_source.1:25 +#: en/lh_source_checksums.1:26 en/lh_source_debian.1:26 +#: en/lh_source_debian-live.1:26 en/lh_source_disk.1:26 en/lh_source_iso.1:26 +#: en/lh_source_net.1:26 en/lh_source_tar.1:26 en/lh_source_usb.1:26 +#: en/lh_source_virtual-hdd.1:26 en/lh_testroot.1:29 en/live-helper.7:249 +#, no-wrap +msgid "HOMEPAGE" +msgstr "" + +#. type: Plain text +#: en/lh.1:29 en/lh_binary.1:27 en/lh_binary_checksums.1:28 +#: en/lh_binary_chroot.1:28 en/lh_binary_debian-installer.1:28 +#: en/lh_binary_disk.1:28 en/lh_binary_encryption.1:28 en/lh_binary_grub.1:28 +#: en/lh_binary_grub2.1:28 en/lh_binary_includes.1:28 en/lh_binary_iso.1:28 +#: en/lh_binary_linux-image.1:28 en/lh_binary_local-hooks.1:28 +#: en/lh_binary_local-includes.1:28 en/lh_binary_local-packageslists.1:28 +#: en/lh_binary_manifest.1:28 en/lh_binary_memtest.1:28 en/lh_binary_net.1:28 +#: en/lh_binary_rootfs.1:28 en/lh_binary_silo.1:28 en/lh_binary_syslinux.1:28 +#: en/lh_binary_tar.1:28 en/lh_binary_usb.1:28 en/lh_binary_virtual-hdd.1:28 +#: en/lh_binary_win32-loader.1:28 en/lh_binary_yaboot.1:28 +#: en/lh_bootstrap.1:27 en/lh_bootstrap_cache.1:28 +#: en/lh_bootstrap_cdebootstrap.1:28 en/lh_bootstrap_copy.1:28 +#: en/lh_bootstrap_debootstrap.1:28 en/lh_build.1:29 en/lh_chroot.1:27 +#: en/lh_chroot_apt.1:28 en/lh_chroot_cache.1:28 +#: en/lh_chroot_debianchroot.1:28 en/lh_chroot_devpts.1:28 +#: en/lh_chroot_dpkg.1:28 en/lh_chroot_hacks.1:28 en/lh_chroot_hooks.1:28 +#: en/lh_chroot_hostname.1:28 en/lh_chroot_hosts.1:28 +#: en/lh_chroot_install-packages.1:28 en/lh_chroot_interactive.1:28 +#: en/lh_chroot_linux-image.1:28 en/lh_chroot_local-hooks.1:28 +#: en/lh_chroot_local-includes.1:28 en/lh_chroot_localization.1:28 +#: en/lh_chroot_local-packages.1:28 en/lh_chroot_local-packageslists.1:28 +#: en/lh_chroot_local-patches.1:28 en/lh_chroot_local-preseed.1:28 +#: en/lh_chroot_packages.1:28 en/lh_chroot_packageslists.1:28 +#: en/lh_chroot_preseed.1:28 en/lh_chroot_proc.1:28 en/lh_chroot_resolv.1:28 +#: en/lh_chroot_selinuxfs.1:28 en/lh_chroot_sources.1:28 +#: en/lh_chroot_symlinks.1:28 en/lh_chroot_sysfs.1:28 +#: en/lh_chroot_sysvinit.1:28 en/lh_chroot_sysv-rc.1:28 +#: en/lh_chroot_tasks.1:28 en/lh_chroot_upstart.1:28 en/lh_clean.1:50 +#: en/lh_config.1:442 en/lh_local.1:27 en/lh_source.1:27 +#: en/lh_source_checksums.1:28 en/lh_source_debian.1:28 +#: en/lh_source_debian-live.1:28 en/lh_source_disk.1:28 en/lh_source_iso.1:28 +#: en/lh_source_net.1:28 en/lh_source_tar.1:28 en/lh_source_usb.1:28 +#: en/lh_source_virtual-hdd.1:28 en/lh_testroot.1:31 en/live-helper.7:251 +msgid "" +"More information about live-helper and the Debian Live project can be found " +"on the homepage at EIE and in the manual at " +"EIE." +msgstr "" + +#. type: SH +#: en/lh.1:30 en/lh_binary.1:28 en/lh_binary_checksums.1:29 +#: en/lh_binary_chroot.1:29 en/lh_binary_debian-installer.1:29 +#: en/lh_binary_disk.1:29 en/lh_binary_encryption.1:29 en/lh_binary_grub.1:29 +#: en/lh_binary_grub2.1:29 en/lh_binary_includes.1:29 en/lh_binary_iso.1:29 +#: en/lh_binary_linux-image.1:29 en/lh_binary_local-hooks.1:29 +#: en/lh_binary_local-includes.1:29 en/lh_binary_local-packageslists.1:29 +#: en/lh_binary_manifest.1:29 en/lh_binary_memtest.1:29 en/lh_binary_net.1:29 +#: en/lh_binary_rootfs.1:29 en/lh_binary_silo.1:29 en/lh_binary_syslinux.1:29 +#: en/lh_binary_tar.1:29 en/lh_binary_usb.1:29 en/lh_binary_virtual-hdd.1:29 +#: en/lh_binary_win32-loader.1:29 en/lh_binary_yaboot.1:29 +#: en/lh_bootstrap.1:28 en/lh_bootstrap_cache.1:29 +#: en/lh_bootstrap_cdebootstrap.1:29 en/lh_bootstrap_copy.1:29 +#: en/lh_bootstrap_debootstrap.1:29 en/lh_build.1:30 en/lh_chroot.1:28 +#: en/lh_chroot_apt.1:29 en/lh_chroot_cache.1:29 +#: en/lh_chroot_debianchroot.1:29 en/lh_chroot_devpts.1:29 +#: en/lh_chroot_dpkg.1:29 en/lh_chroot_hacks.1:29 en/lh_chroot_hooks.1:29 +#: en/lh_chroot_hostname.1:29 en/lh_chroot_hosts.1:29 +#: en/lh_chroot_install-packages.1:29 en/lh_chroot_interactive.1:29 +#: en/lh_chroot_linux-image.1:29 en/lh_chroot_local-hooks.1:29 +#: en/lh_chroot_local-includes.1:29 en/lh_chroot_localization.1:29 +#: en/lh_chroot_local-packages.1:29 en/lh_chroot_local-packageslists.1:29 +#: en/lh_chroot_local-patches.1:29 en/lh_chroot_local-preseed.1:29 +#: en/lh_chroot_packages.1:29 en/lh_chroot_packageslists.1:29 +#: en/lh_chroot_preseed.1:29 en/lh_chroot_proc.1:29 en/lh_chroot_resolv.1:29 +#: en/lh_chroot_selinuxfs.1:29 en/lh_chroot_sources.1:29 +#: en/lh_chroot_symlinks.1:29 en/lh_chroot_sysfs.1:29 +#: en/lh_chroot_sysvinit.1:29 en/lh_chroot_sysv-rc.1:29 +#: en/lh_chroot_tasks.1:29 en/lh_chroot_upstart.1:29 en/lh_clean.1:51 +#: en/lh_config.1:443 en/lh_local.1:28 en/lh_source.1:28 +#: en/lh_source_checksums.1:29 en/lh_source_debian.1:29 +#: en/lh_source_debian-live.1:29 en/lh_source_disk.1:29 en/lh_source_iso.1:29 +#: en/lh_source_net.1:29 en/lh_source_tar.1:29 en/lh_source_usb.1:29 +#: en/lh_source_virtual-hdd.1:29 en/lh_testroot.1:32 en/live-helper.7:252 +#, no-wrap +msgid "BUGS" +msgstr "" + +#. type: Plain text +#: en/lh.1:32 en/lh_binary.1:30 en/lh_binary_checksums.1:31 +#: en/lh_binary_chroot.1:31 en/lh_binary_debian-installer.1:31 +#: en/lh_binary_disk.1:31 en/lh_binary_encryption.1:31 en/lh_binary_grub.1:31 +#: en/lh_binary_grub2.1:31 en/lh_binary_includes.1:31 en/lh_binary_iso.1:31 +#: en/lh_binary_linux-image.1:31 en/lh_binary_local-hooks.1:31 +#: en/lh_binary_local-includes.1:31 en/lh_binary_local-packageslists.1:31 +#: en/lh_binary_manifest.1:31 en/lh_binary_memtest.1:31 en/lh_binary_net.1:31 +#: en/lh_binary_rootfs.1:31 en/lh_binary_silo.1:31 en/lh_binary_syslinux.1:31 +#: en/lh_binary_tar.1:31 en/lh_binary_usb.1:31 en/lh_binary_virtual-hdd.1:31 +#: en/lh_binary_win32-loader.1:31 en/lh_binary_yaboot.1:31 +#: en/lh_bootstrap.1:30 en/lh_bootstrap_cache.1:31 +#: en/lh_bootstrap_cdebootstrap.1:31 en/lh_bootstrap_copy.1:31 +#: en/lh_bootstrap_debootstrap.1:31 en/lh_build.1:32 en/lh_chroot.1:30 +#: en/lh_chroot_apt.1:31 en/lh_chroot_cache.1:31 +#: en/lh_chroot_debianchroot.1:31 en/lh_chroot_devpts.1:31 +#: en/lh_chroot_dpkg.1:31 en/lh_chroot_hacks.1:31 en/lh_chroot_hooks.1:31 +#: en/lh_chroot_hostname.1:31 en/lh_chroot_hosts.1:31 +#: en/lh_chroot_install-packages.1:31 en/lh_chroot_interactive.1:31 +#: en/lh_chroot_linux-image.1:31 en/lh_chroot_local-hooks.1:31 +#: en/lh_chroot_local-includes.1:31 en/lh_chroot_localization.1:31 +#: en/lh_chroot_local-packages.1:31 en/lh_chroot_local-packageslists.1:31 +#: en/lh_chroot_local-patches.1:31 en/lh_chroot_local-preseed.1:31 +#: en/lh_chroot_packages.1:31 en/lh_chroot_packageslists.1:31 +#: en/lh_chroot_preseed.1:31 en/lh_chroot_proc.1:31 en/lh_chroot_resolv.1:31 +#: en/lh_chroot_selinuxfs.1:31 en/lh_chroot_sources.1:31 +#: en/lh_chroot_symlinks.1:31 en/lh_chroot_sysfs.1:31 +#: en/lh_chroot_sysvinit.1:31 en/lh_chroot_sysv-rc.1:31 +#: en/lh_chroot_tasks.1:31 en/lh_chroot_upstart.1:31 en/lh_clean.1:53 +#: en/lh_config.1:445 en/lh_local.1:30 en/lh_source.1:30 +#: en/lh_source_checksums.1:31 en/lh_source_debian.1:31 +#: en/lh_source_debian-live.1:31 en/lh_source_disk.1:31 en/lh_source_iso.1:31 +#: en/lh_source_net.1:31 en/lh_source_tar.1:31 en/lh_source_usb.1:31 +#: en/lh_source_virtual-hdd.1:31 en/lh_testroot.1:34 en/live-helper.7:254 +msgid "" +"Bugs can be reported by sumbitting a bugreport for the live-helper package " +"in the Debian Bug Tracking System at EIE or " +"by writing a mail to the Debian Live mailing list at EIE." +msgstr "" + +#. type: SH +#: en/lh.1:33 en/lh_binary.1:31 en/lh_binary_checksums.1:32 +#: en/lh_binary_chroot.1:32 en/lh_binary_debian-installer.1:32 +#: en/lh_binary_disk.1:32 en/lh_binary_encryption.1:32 en/lh_binary_grub.1:32 +#: en/lh_binary_grub2.1:32 en/lh_binary_includes.1:32 en/lh_binary_iso.1:32 +#: en/lh_binary_linux-image.1:32 en/lh_binary_local-hooks.1:32 +#: en/lh_binary_local-includes.1:32 en/lh_binary_local-packageslists.1:32 +#: en/lh_binary_manifest.1:32 en/lh_binary_memtest.1:32 en/lh_binary_net.1:32 +#: en/lh_binary_rootfs.1:32 en/lh_binary_silo.1:32 en/lh_binary_syslinux.1:32 +#: en/lh_binary_tar.1:32 en/lh_binary_usb.1:32 en/lh_binary_virtual-hdd.1:32 +#: en/lh_binary_win32-loader.1:32 en/lh_binary_yaboot.1:32 +#: en/lh_bootstrap.1:31 en/lh_bootstrap_cache.1:32 +#: en/lh_bootstrap_cdebootstrap.1:32 en/lh_bootstrap_copy.1:32 +#: en/lh_bootstrap_debootstrap.1:32 en/lh_build.1:33 en/lh_chroot.1:31 +#: en/lh_chroot_apt.1:32 en/lh_chroot_cache.1:32 +#: en/lh_chroot_debianchroot.1:32 en/lh_chroot_devpts.1:32 +#: en/lh_chroot_dpkg.1:32 en/lh_chroot_hacks.1:32 en/lh_chroot_hooks.1:32 +#: en/lh_chroot_hostname.1:32 en/lh_chroot_hosts.1:32 +#: en/lh_chroot_install-packages.1:32 en/lh_chroot_interactive.1:32 +#: en/lh_chroot_linux-image.1:32 en/lh_chroot_local-hooks.1:32 +#: en/lh_chroot_local-includes.1:32 en/lh_chroot_localization.1:32 +#: en/lh_chroot_local-packages.1:32 en/lh_chroot_local-packageslists.1:32 +#: en/lh_chroot_local-patches.1:32 en/lh_chroot_local-preseed.1:32 +#: en/lh_chroot_packages.1:32 en/lh_chroot_packageslists.1:32 +#: en/lh_chroot_preseed.1:32 en/lh_chroot_proc.1:32 en/lh_chroot_resolv.1:32 +#: en/lh_chroot_selinuxfs.1:32 en/lh_chroot_sources.1:32 +#: en/lh_chroot_symlinks.1:32 en/lh_chroot_sysfs.1:32 +#: en/lh_chroot_sysvinit.1:32 en/lh_chroot_sysv-rc.1:32 +#: en/lh_chroot_tasks.1:32 en/lh_chroot_upstart.1:32 en/lh_clean.1:54 +#: en/lh_config.1:446 en/lh_local.1:31 en/lh_source.1:31 +#: en/lh_source_checksums.1:32 en/lh_source_debian.1:32 +#: en/lh_source_debian-live.1:32 en/lh_source_disk.1:32 en/lh_source_iso.1:32 +#: en/lh_source_net.1:32 en/lh_source_tar.1:32 en/lh_source_usb.1:32 +#: en/lh_source_virtual-hdd.1:32 en/lh_testroot.1:35 en/live-helper.7:255 +#, no-wrap +msgid "AUTHOR" +msgstr "" + +#. type: Plain text +#: en/lh.1:34 en/lh_binary.1:32 en/lh_binary_checksums.1:33 +#: en/lh_binary_chroot.1:33 en/lh_binary_debian-installer.1:33 +#: en/lh_binary_disk.1:33 en/lh_binary_encryption.1:33 en/lh_binary_grub.1:33 +#: en/lh_binary_grub2.1:33 en/lh_binary_includes.1:33 en/lh_binary_iso.1:33 +#: en/lh_binary_linux-image.1:33 en/lh_binary_local-hooks.1:33 +#: en/lh_binary_local-includes.1:33 en/lh_binary_local-packageslists.1:33 +#: en/lh_binary_manifest.1:33 en/lh_binary_memtest.1:33 en/lh_binary_net.1:33 +#: en/lh_binary_rootfs.1:33 en/lh_binary_silo.1:33 en/lh_binary_syslinux.1:33 +#: en/lh_binary_tar.1:33 en/lh_binary_usb.1:33 en/lh_binary_virtual-hdd.1:33 +#: en/lh_binary_win32-loader.1:33 en/lh_binary_yaboot.1:33 +#: en/lh_bootstrap.1:32 en/lh_bootstrap_cache.1:33 +#: en/lh_bootstrap_cdebootstrap.1:33 en/lh_bootstrap_copy.1:33 +#: en/lh_bootstrap_debootstrap.1:33 en/lh_build.1:34 en/lh_chroot.1:32 +#: en/lh_chroot_apt.1:33 en/lh_chroot_cache.1:33 +#: en/lh_chroot_debianchroot.1:33 en/lh_chroot_devpts.1:33 +#: en/lh_chroot_dpkg.1:33 en/lh_chroot_hacks.1:33 en/lh_chroot_hooks.1:33 +#: en/lh_chroot_hostname.1:33 en/lh_chroot_hosts.1:33 +#: en/lh_chroot_install-packages.1:33 en/lh_chroot_interactive.1:33 +#: en/lh_chroot_linux-image.1:33 en/lh_chroot_local-hooks.1:33 +#: en/lh_chroot_local-includes.1:33 en/lh_chroot_localization.1:33 +#: en/lh_chroot_local-packages.1:33 en/lh_chroot_local-packageslists.1:33 +#: en/lh_chroot_local-patches.1:33 en/lh_chroot_local-preseed.1:33 +#: en/lh_chroot_packages.1:33 en/lh_chroot_packageslists.1:33 +#: en/lh_chroot_preseed.1:33 en/lh_chroot_proc.1:33 en/lh_chroot_resolv.1:33 +#: en/lh_chroot_selinuxfs.1:33 en/lh_chroot_sources.1:33 +#: en/lh_chroot_symlinks.1:33 en/lh_chroot_sysfs.1:33 +#: en/lh_chroot_sysvinit.1:33 en/lh_chroot_sysv-rc.1:33 +#: en/lh_chroot_tasks.1:33 en/lh_chroot_upstart.1:33 en/lh_clean.1:55 +#: en/lh_config.1:447 en/lh_local.1:32 en/lh_source.1:32 +#: en/lh_source_checksums.1:33 en/lh_source_debian.1:33 +#: en/lh_source_debian-live.1:33 en/lh_source_disk.1:33 en/lh_source_iso.1:33 +#: en/lh_source_net.1:33 en/lh_source_tar.1:33 en/lh_source_usb.1:33 +#: en/lh_source_virtual-hdd.1:33 en/lh_testroot.1:36 en/live-helper.7:256 +msgid "" +"live-helper was written by Daniel Baumann EIE for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_build.1:19 en/lh_config.1:430 +#, no-wrap +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:5 +msgid "B - Create config directory" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:8 +msgid "B [I]" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:11 +msgid "B" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:13 +msgid "B<\t[--apt> apt|aptitude]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:15 +msgid " [B<--apt-ftp-proxy> I]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:17 +msgid " [B<--apt-http-proxy> I]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:19 +msgid " [B<--apt-pdiffs> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:21 +msgid " [B<--apt-options> I