diff options
633 files changed, 132837 insertions, 51655 deletions
@@ -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; \ - do \ - rm -f $(DESTDIR)/usr/share/man/man1/$$(basename $$MANPAGE .en.1).1*; \ - done - - for MANPAGE in manpages/*.en.7; \ + for MANPAGE in manpages/en/*; \ do \ - rm -f $(DESTDIR)/usr/share/man/man7/$$(basename $$MANPAGE .en.7).7*; \ + SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$2 }')"; \ + rm -f $(DESTDIR)/usr/share/man/man$${SECTION}/$$(basename $${MANPAGE} .en.$${SECTION}).$${SECTION}; \ done - for TRANSLATIONS in $$TRANSLATIONS; \ + for LANGUAGE in $(LANGUAGES); \ do \ - for MANPAGE in manpages/*.$$TRANSLATION.1; \ - do \ - rm -f $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/$$(basename $$MANPAGE .$$TRANSLATION.1).1*; \ - done; \ - for MANPAGE in manpages/*.$$TRANSLATION.7; \ + for MANPAGE in manpages/$${LANGUAGE}/*; \ 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 <http://po4a.alioth.debian.org/>."; \ - 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 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 +.\" 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 -\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. +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 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 index 44408d410..44408d410 100644 --- a/manpages/po4a/de/lh.en.1.po +++ b/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 index a426d76b7..a426d76b7 100644 --- a/manpages/po4a/de/lh_binary.en.1.po +++ b/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 index dab300155..dab300155 100644 --- a/manpages/po4a/de/lh_binary_encryption.en.1.po +++ b/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 index 09562aed9..09562aed9 100644 --- a/manpages/po4a/de/lh_binary_checksums.en.1.po +++ b/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 index fef5c83fe..fef5c83fe 100644 --- a/manpages/po4a/de/lh_binary_chroot.en.1.po +++ b/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 index 496eede99..496eede99 100644 --- a/manpages/po4a/de/lh_binary_debian-installer.en.1.po +++ b/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 index c50d42bd2..c50d42bd2 100644 --- a/manpages/po4a/de/lh_binary_disk.en.1.po +++ b/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 index 4f55dcf59..4f55dcf59 100644 --- a/manpages/po4a/de/lh_binary_grub.en.1.po +++ b/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 index 472a0e90a..472a0e90a 100644 --- a/manpages/po4a/de/lh_binary_includes.en.1.po +++ b/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 index 866c9a288..866c9a288 100644 --- a/manpages/po4a/de/lh_binary_iso.en.1.po +++ b/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 index 18832cda8..18832cda8 100644 --- a/manpages/po4a/de/lh_binary_linux-image.en.1.po +++ b/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 index 21d08a96a..21d08a96a 100644 --- a/manpages/po4a/de/lh_binary_local-hooks.en.1.po +++ b/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 index 6dcebe0f8..6dcebe0f8 100644 --- a/manpages/po4a/de/lh_binary_local-includes.en.1.po +++ b/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 index d32a47acf..d32a47acf 100644 --- a/manpages/po4a/de/lh_binary_local-packageslists.en.1.po +++ b/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 index e5b5e8c5d..e5b5e8c5d 100644 --- a/manpages/po4a/de/lh_binary_manifest.en.1.po +++ b/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 index 1d1355b61..1d1355b61 100644 --- a/manpages/po4a/de/lh_binary_memtest.en.1.po +++ b/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 index 66b4e2023..66b4e2023 100644 --- a/manpages/po4a/de/lh_binary_net.en.1.po +++ b/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 index 1a49a3f00..1a49a3f00 100644 --- a/manpages/po4a/de/lh_binary_rootfs.en.1.po +++ b/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 index 2f17d6350..2f17d6350 100644 --- a/manpages/po4a/de/lh_binary_silo.en.1.po +++ b/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 index f1f74a49a..f1f74a49a 100644 --- a/manpages/po4a/de/lh_binary_syslinux.en.1.po +++ b/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 index d2fe7e86f..d2fe7e86f 100644 --- a/manpages/po4a/de/lh_binary_tar.en.1.po +++ b/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 index 59dfcde8d..59dfcde8d 100644 --- a/manpages/po4a/de/lh_binary_usb.en.1.po +++ b/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 index a0de93f81..a0de93f81 100644 --- a/manpages/po4a/de/lh_binary_virtual-hdd.en.1.po +++ b/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 index 4a4a521dd..4a4a521dd 100644 --- a/manpages/po4a/de/lh_binary_win32-loader.en.1.po +++ b/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 index 634d45ae5..634d45ae5 100644 --- a/manpages/po4a/de/lh_binary_yaboot.en.1.po +++ b/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 index fcc65432f..fcc65432f 100644 --- a/manpages/po4a/de/lh_bootstrap.en.1.po +++ b/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 index 45b6ebe5d..45b6ebe5d 100644 --- a/manpages/po4a/de/lh_bootstrap_cache.en.1.po +++ b/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 index 2c505a0e4..2c505a0e4 100644 --- a/manpages/po4a/de/lh_bootstrap_cdebootstrap.en.1.po +++ b/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 index 734a5e37d..734a5e37d 100644 --- a/manpages/po4a/de/lh_bootstrap_copy.en.1.po +++ b/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 index 277af832a..277af832a 100644 --- a/manpages/po4a/de/lh_bootstrap_debootstrap.en.1.po +++ b/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 index b82c69794..b82c69794 100644 --- a/manpages/po4a/de/lh_build.en.1.po +++ b/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 index ef4cd792f..ef4cd792f 100644 --- a/manpages/po4a/de/lh_chroot.en.1.po +++ b/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 index 76d4841ed..76d4841ed 100644 --- a/manpages/po4a/de/lh_chroot_apt.en.1.po +++ b/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 index 8e2686456..8e2686456 100644 --- a/manpages/po4a/de/lh_chroot_cache.en.1.po +++ b/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 index 5e8e12286..5e8e12286 100644 --- a/manpages/po4a/de/lh_chroot_debianchroot.en.1.po +++ b/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 index e54292169..e54292169 100644 --- a/manpages/po4a/de/lh_chroot_devpts.en.1.po +++ b/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 index 5d51c2625..5d51c2625 100644 --- a/manpages/po4a/de/lh_chroot_dpkg.en.1.po +++ b/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 index e428ef84c..e428ef84c 100644 --- a/manpages/po4a/de/lh_chroot_hacks.en.1.po +++ b/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 index 3176b0715..3176b0715 100644 --- a/manpages/po4a/de/lh_chroot_hooks.en.1.po +++ b/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 index 226e2ff33..226e2ff33 100644 --- a/manpages/po4a/de/lh_chroot_hostname.en.1.po +++ b/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 index eb539a57f..eb539a57f 100644 --- a/manpages/po4a/de/lh_chroot_hosts.en.1.po +++ b/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 index d24b2a56e..d24b2a56e 100644 --- a/manpages/po4a/de/lh_chroot_install-packages.en.1.po +++ b/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 index 073a07323..073a07323 100644 --- a/manpages/po4a/de/lh_chroot_interactive.en.1.po +++ b/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 index f774cf6c4..f774cf6c4 100644 --- a/manpages/po4a/de/lh_chroot_linux-image.en.1.po +++ b/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 index 95afbb88d..95afbb88d 100644 --- a/manpages/po4a/de/lh_chroot_local-hooks.en.1.po +++ b/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 index 2a8a687b8..2a8a687b8 100644 --- a/manpages/po4a/de/lh_chroot_local-includes.en.1.po +++ b/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 index afc7b7896..afc7b7896 100644 --- a/manpages/po4a/de/lh_chroot_local-packages.en.1.po +++ b/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 index 962ba84ed..962ba84ed 100644 --- a/manpages/po4a/de/lh_chroot_local-patches.en.1.po +++ b/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 index c7b119d68..c7b119d68 100644 --- a/manpages/po4a/de/lh_chroot_local-preseed.en.1.po +++ b/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 index 80dcd1c55..80dcd1c55 100644 --- a/manpages/po4a/de/lh_chroot_localization.en.1.po +++ b/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 index 79a608494..79a608494 100644 --- a/manpages/po4a/de/lh_chroot_packages.en.1.po +++ b/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 index 3806660de..3806660de 100644 --- a/manpages/po4a/de/lh_chroot_packageslists.en.1.po +++ b/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 index 994003978..994003978 100644 --- a/manpages/po4a/de/lh_chroot_preseed.en.1.po +++ b/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 index a648c817d..a648c817d 100644 --- a/manpages/po4a/de/lh_chroot_proc.en.1.po +++ b/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 index 53e1e710a..53e1e710a 100644 --- a/manpages/po4a/de/lh_chroot_resolv.en.1.po +++ b/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 index 4989aa1ec..4989aa1ec 100644 --- a/manpages/po4a/de/lh_chroot_selinuxfs.en.1.po +++ b/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 index fcad73d50..fcad73d50 100644 --- a/manpages/po4a/de/lh_chroot_sources.en.1.po +++ b/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 index c76a957e7..c76a957e7 100644 --- a/manpages/po4a/de/lh_chroot_symlinks.en.1.po +++ b/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 index a809e68d4..a809e68d4 100644 --- a/manpages/po4a/de/lh_chroot_sysfs.en.1.po +++ b/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 index 77f07cd32..77f07cd32 100644 --- a/manpages/po4a/de/lh_chroot_sysv-rc.en.1.po +++ b/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 index 3b560b1fd..3b560b1fd 100644 --- a/manpages/po4a/de/lh_chroot_sysvinit.en.1.po +++ b/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 index 8ccdc9515..8ccdc9515 100644 --- a/manpages/po4a/de/lh_chroot_tasks.en.1.po +++ b/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 index da381d012..da381d012 100644 --- a/manpages/po4a/de/lh_clean.en.1.po +++ b/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 index 698aed749..698aed749 100644 --- a/manpages/po4a/de/lh_config.en.1.po +++ b/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 index 1250223a2..1250223a2 100644 --- a/manpages/po4a/de/lh_local.en.1.po +++ b/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 index 07c14dfd4..07c14dfd4 100644 --- a/manpages/po4a/de/lh_source.en.1.po +++ b/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 index 7455a4266..7455a4266 100644 --- a/manpages/po4a/de/lh_source_checksums.en.1.po +++ b/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 index ace01834f..ace01834f 100644 --- a/manpages/po4a/de/lh_source_debian-live.en.1.po +++ b/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 index 9232dc685..9232dc685 100644 --- a/manpages/po4a/de/lh_source_debian.en.1.po +++ b/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 index 563cdaaa9..563cdaaa9 100644 --- a/manpages/po4a/de/lh_source_disk.en.1.po +++ b/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 index 593db6b57..593db6b57 100644 --- a/manpages/po4a/de/lh_source_iso.en.1.po +++ b/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 index 84ab793ee..84ab793ee 100644 --- a/manpages/po4a/de/lh_source_net.en.1.po +++ b/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 index 7fbcb7c34..7fbcb7c34 100644 --- a/manpages/po4a/de/lh_source_tar.en.1.po +++ b/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 index 66d4612a6..66d4612a6 100644 --- a/manpages/po4a/de/lh_source_usb.en.1.po +++ b/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 index a839d774f..a839d774f 100644 --- a/manpages/po4a/de/lh_source_virtual-hdd.en.1.po +++ b/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 index 79988748f..79988748f 100644 --- a/manpages/po4a/de/lh_testroot.en.1.po +++ b/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 index b726aad35..b726aad35 100644 --- a/manpages/po4a/de/live-helper.en.7.po +++ b/manpages/old/de/live-helper.7.po diff --git a/manpages/po4a/fr/lh.en.1.po b/manpages/old/fr/lh.1.po index a5d62492c..a5d62492c 100644 --- a/manpages/po4a/fr/lh.en.1.po +++ b/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 index 218fcc1a4..218fcc1a4 100644 --- a/manpages/po4a/fr/lh_binary.en.1.po +++ b/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 index fd5e692c8..fd5e692c8 100644 --- a/manpages/po4a/fr/lh_binary_encryption.en.1.po +++ b/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 index 7a2490625..7a2490625 100644 --- a/manpages/po4a/fr/lh_binary_checksums.en.1.po +++ b/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 index 284b07911..284b07911 100644 --- a/manpages/po4a/fr/lh_binary_chroot.en.1.po +++ b/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 index e6f67dee0..e6f67dee0 100644 --- a/manpages/po4a/fr/lh_binary_debian-installer.en.1.po +++ b/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 index 827f7757a..827f7757a 100644 --- a/manpages/po4a/fr/lh_binary_disk.en.1.po +++ b/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 index 9ff614255..9ff614255 100644 --- a/manpages/po4a/fr/lh_binary_grub.en.1.po +++ b/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 index 3fbe4f18d..3fbe4f18d 100644 --- a/manpages/po4a/fr/lh_binary_includes.en.1.po +++ b/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 index 93b79eae4..93b79eae4 100644 --- a/manpages/po4a/fr/lh_binary_iso.en.1.po +++ b/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 index 942bcdc67..942bcdc67 100644 --- a/manpages/po4a/fr/lh_binary_linux-image.en.1.po +++ b/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 index 035a76234..035a76234 100644 --- a/manpages/po4a/fr/lh_binary_local-hooks.en.1.po +++ b/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 index 1c7ec5c57..1c7ec5c57 100644 --- a/manpages/po4a/fr/lh_binary_local-includes.en.1.po +++ b/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 index 3b522f87b..3b522f87b 100644 --- a/manpages/po4a/fr/lh_binary_local-packageslists.en.1.po +++ b/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 index 34818d47d..34818d47d 100644 --- a/manpages/po4a/fr/lh_binary_manifest.en.1.po +++ b/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 index ad85737ad..ad85737ad 100644 --- a/manpages/po4a/fr/lh_binary_memtest.en.1.po +++ b/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 index b5ece5866..b5ece5866 100644 --- a/manpages/po4a/fr/lh_binary_net.en.1.po +++ b/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 index af35b9042..af35b9042 100644 --- a/manpages/po4a/fr/lh_binary_rootfs.en.1.po +++ b/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 index 7c8292e8c..7c8292e8c 100644 --- a/manpages/po4a/fr/lh_binary_silo.en.1.po +++ b/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 index e66451c9b..e66451c9b 100644 --- a/manpages/po4a/fr/lh_binary_syslinux.en.1.po +++ b/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 index fd857055f..fd857055f 100644 --- a/manpages/po4a/fr/lh_binary_tar.en.1.po +++ b/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 index 086866671..086866671 100644 --- a/manpages/po4a/fr/lh_binary_usb.en.1.po +++ b/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 index 53dfdbdb4..53dfdbdb4 100644 --- a/manpages/po4a/fr/lh_binary_virtual-hdd.en.1.po +++ b/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 index bea515733..bea515733 100644 --- a/manpages/po4a/fr/lh_binary_win32-loader.en.1.po +++ b/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 index 5c3965d51..5c3965d51 100644 --- a/manpages/po4a/fr/lh_binary_yaboot.en.1.po +++ b/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 index f6bae5da4..f6bae5da4 100644 --- a/manpages/po4a/fr/lh_bootstrap.en.1.po +++ b/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 index eb252fda3..eb252fda3 100644 --- a/manpages/po4a/fr/lh_bootstrap_cache.en.1.po +++ b/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 index 428a1d4f6..428a1d4f6 100644 --- a/manpages/po4a/fr/lh_bootstrap_cdebootstrap.en.1.po +++ b/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 index 2fc511622..2fc511622 100644 --- a/manpages/po4a/fr/lh_bootstrap_copy.en.1.po +++ b/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 index 612a358af..612a358af 100644 --- a/manpages/po4a/fr/lh_bootstrap_debootstrap.en.1.po +++ b/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 index 8f6f661b5..8f6f661b5 100644 --- a/manpages/po4a/fr/lh_build.en.1.po +++ b/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 index fdf32761e..fdf32761e 100644 --- a/manpages/po4a/fr/lh_chroot.en.1.po +++ b/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 index 3171159d2..3171159d2 100644 --- a/manpages/po4a/fr/lh_chroot_apt.en.1.po +++ b/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 index 66479b930..66479b930 100644 --- a/manpages/po4a/fr/lh_chroot_cache.en.1.po +++ b/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 index b2412611a..b2412611a 100644 --- a/manpages/po4a/fr/lh_chroot_debianchroot.en.1.po +++ b/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 index e76c6d417..e76c6d417 100644 --- a/manpages/po4a/fr/lh_chroot_devpts.en.1.po +++ b/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 index 5c42d4d08..5c42d4d08 100644 --- a/manpages/po4a/fr/lh_chroot_dpkg.en.1.po +++ b/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 index 845b89c82..845b89c82 100644 --- a/manpages/po4a/fr/lh_chroot_hacks.en.1.po +++ b/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 index 1a3b89248..1a3b89248 100644 --- a/manpages/po4a/fr/lh_chroot_hooks.en.1.po +++ b/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 index 36b8fc27a..36b8fc27a 100644 --- a/manpages/po4a/fr/lh_chroot_hostname.en.1.po +++ b/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 index c61cbb8c4..c61cbb8c4 100644 --- a/manpages/po4a/fr/lh_chroot_hosts.en.1.po +++ b/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 index d0e9c129c..d0e9c129c 100644 --- a/manpages/po4a/fr/lh_chroot_install-packages.en.1.po +++ b/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 index 11544229c..11544229c 100644 --- a/manpages/po4a/fr/lh_chroot_interactive.en.1.po +++ b/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 index 23a322ff0..23a322ff0 100644 --- a/manpages/po4a/fr/lh_chroot_linux-image.en.1.po +++ b/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 index 64311dc81..64311dc81 100644 --- a/manpages/po4a/fr/lh_chroot_local-hooks.en.1.po +++ b/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 index 301542dba..301542dba 100644 --- a/manpages/po4a/fr/lh_chroot_local-includes.en.1.po +++ b/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 index aa38ee45c..aa38ee45c 100644 --- a/manpages/po4a/fr/lh_chroot_local-packages.en.1.po +++ b/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 index a80960b17..a80960b17 100644 --- a/manpages/po4a/fr/lh_chroot_local-patches.en.1.po +++ b/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 index c2ea75acc..c2ea75acc 100644 --- a/manpages/po4a/fr/lh_chroot_local-preseed.en.1.po +++ b/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 index 6372975fb..6372975fb 100644 --- a/manpages/po4a/fr/lh_chroot_localization.en.1.po +++ b/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 index ff243edb9..ff243edb9 100644 --- a/manpages/po4a/fr/lh_chroot_packages.en.1.po +++ b/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 index a1ef45f4f..a1ef45f4f 100644 --- a/manpages/po4a/fr/lh_chroot_packageslists.en.1.po +++ b/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 index e3473d953..e3473d953 100644 --- a/manpages/po4a/fr/lh_chroot_preseed.en.1.po +++ b/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 index 90631849b..90631849b 100644 --- a/manpages/po4a/fr/lh_chroot_proc.en.1.po +++ b/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 index 2c5432b64..2c5432b64 100644 --- a/manpages/po4a/fr/lh_chroot_resolv.en.1.po +++ b/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 index d8df48e5b..d8df48e5b 100644 --- a/manpages/po4a/fr/lh_chroot_selinuxfs.en.1.po +++ b/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 index 04213c0ae..04213c0ae 100644 --- a/manpages/po4a/fr/lh_chroot_sources.en.1.po +++ b/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 index ce5aad375..ce5aad375 100644 --- a/manpages/po4a/fr/lh_chroot_symlinks.en.1.po +++ b/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 index 50cd85315..50cd85315 100644 --- a/manpages/po4a/fr/lh_chroot_sysfs.en.1.po +++ b/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 index fbe80cfc2..fbe80cfc2 100644 --- a/manpages/po4a/fr/lh_chroot_sysv-rc.en.1.po +++ b/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 index 9592a037b..9592a037b 100644 --- a/manpages/po4a/fr/lh_chroot_sysvinit.en.1.po +++ b/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 index 9e2a40050..9e2a40050 100644 --- a/manpages/po4a/fr/lh_chroot_tasks.en.1.po +++ b/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 index 998f4e1c3..998f4e1c3 100644 --- a/manpages/po4a/fr/lh_clean.en.1.po +++ b/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 index 0f87f9b4d..0f87f9b4d 100644 --- a/manpages/po4a/fr/lh_config.en.1.po +++ b/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 index d04a8ae54..d04a8ae54 100644 --- a/manpages/po4a/fr/lh_local.en.1.po +++ b/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 index 2dc96ae2b..2dc96ae2b 100644 --- a/manpages/po4a/fr/lh_source.en.1.po +++ b/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 index be9a87e4e..be9a87e4e 100644 --- a/manpages/po4a/fr/lh_source_checksums.en.1.po +++ b/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 index c42461b97..c42461b97 100644 --- a/manpages/po4a/fr/lh_source_debian-live.en.1.po +++ b/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 index 2120f9d0b..2120f9d0b 100644 --- a/manpages/po4a/fr/lh_source_debian.en.1.po +++ b/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 index aba820c3a..aba820c3a 100644 --- a/manpages/po4a/fr/lh_source_disk.en.1.po +++ b/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 index 8d429fd6e..8d429fd6e 100644 --- a/manpages/po4a/fr/lh_source_iso.en.1.po +++ b/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 index a6c46c52c..a6c46c52c 100644 --- a/manpages/po4a/fr/lh_source_net.en.1.po +++ b/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 index ffa5569ca..ffa5569ca 100644 --- a/manpages/po4a/fr/lh_source_tar.en.1.po +++ b/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 index 7e5060629..7e5060629 100644 --- a/manpages/po4a/fr/lh_source_usb.en.1.po +++ b/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 index d07e75c53..d07e75c53 100644 --- a/manpages/po4a/fr/lh_source_virtual-hdd.en.1.po +++ b/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 index 5235d8ca7..5235d8ca7 100644 --- a/manpages/po4a/fr/lh_testroot.en.1.po +++ b/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 index 6e20dcde3..6e20dcde3 100644 --- a/manpages/po4a/fr/live-helper.en.7.po +++ b/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<lh> - 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<lh> COMMAND [COMMAND_OPTIONS]" +msgstr "" + +#. type: Plain text +#: en/lh.1:10 +msgid "B<lh> [I<live-helper\\ options>]" +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<lh> is a high-level command (porcelain) of I<live-helper>(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<lh> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:5 +msgid "B<lh binary> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:8 +msgid "B<lh binary> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:11 +msgid "" +"B<lh binary> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:13 +msgid "" +"B<lh binary> 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<lh binary> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:5 +msgid "B<lh binary_checksums> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:8 +msgid "B<lh binary_checksums> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:11 +msgid "" +"B<lh binary_checksums> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:16 +msgid "" +"B<lh binary_checksums> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<n/a>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:5 +msgid "B<lh binary_chroot> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:8 +msgid "B<lh binary_chroot> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:11 +msgid "" +"B<lh binary_chroot> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:16 +msgid "" +"B<lh binary_chroot> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:5 +msgid "B<lh binary_debian-installer> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:8 +msgid "B<lh binary_debian-installer> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:11 +msgid "" +"B<lh binary_debian-installer> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:16 +msgid "" +"B<lh binary_debian-installer> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:5 +msgid "B<lh binary_disk> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:8 +msgid "B<lh binary_disk> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:11 +msgid "" +"B<lh binary_disk> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:16 +msgid "" +"B<lh binary_disk> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:5 +msgid "B<lh binary_encryption> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:8 +msgid "B<lh binary_encryption> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:11 +msgid "" +"B<lh binary_encryption> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:16 +msgid "" +"B<lh binary_encryption> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:5 +msgid "B<lh binary_grub> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:8 +msgid "B<lh binary_grub> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:11 +msgid "" +"B<lh binary_grub> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:16 +msgid "" +"B<lh binary_grub> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:5 +msgid "B<lh binary_grub2> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:8 +msgid "B<lh binary_grub2> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:11 +msgid "" +"B<lh binary_grub2> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:16 +msgid "" +"B<lh binary_grub2> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:5 +msgid "B<lh binary_includes> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:8 +msgid "B<lh binary_includes> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:11 +msgid "" +"B<lh binary_includes> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:16 +msgid "" +"B<lh binary_includes> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:5 +msgid "B<lh binary_iso> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:8 +msgid "B<lh binary_iso> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:11 +msgid "" +"B<lh binary_iso> is a low-level command (plumbing) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:16 +msgid "" +"B<lh binary_iso> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:5 +msgid "B<lh binary_linux-image> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:8 +msgid "B<lh binary_linux-image> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:11 +msgid "" +"B<lh binary_linux-image> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:16 +msgid "" +"B<lh binary_linux-image> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:5 +msgid "B<lh binary_local-hooks> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:8 +msgid "B<lh binary_local-hooks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:11 +msgid "" +"B<lh binary_local-hooks> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:16 +msgid "" +"B<lh binary_local-hooks> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:5 +msgid "B<lh binary_local-includes> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:8 +msgid "B<lh binary_local-includes> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:11 +msgid "" +"B<lh binary_local-includes> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:16 +msgid "" +"B<lh binary_local-includes> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:5 +msgid "B<lh binary_local-packageslists> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:8 +msgid "B<lh binary_local-packageslists> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:11 +msgid "" +"B<lh binary_local-packageslists> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:16 +msgid "" +"B<lh binary_local-packageslists> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:5 +msgid "B<lh binary_manifest> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:8 +msgid "B<lh binary_manifest> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:11 +msgid "" +"B<lh binary_manifest> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:16 +msgid "" +"B<lh binary_manifest> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:5 +msgid "B<lh binary_memtest> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:8 +msgid "B<lh binary_memtest> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:11 +msgid "" +"B<lh binary_memtest> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:16 +msgid "" +"B<lh binary_memtest> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:5 +msgid "B<lh binary_net> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:8 +msgid "B<lh binary_net> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:11 +msgid "" +"B<lh binary_net> is a low-level command (plumbing) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:16 +msgid "" +"B<lh binary_net> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:5 +msgid "B<lh binary_rootfs> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:8 +msgid "B<lh binary_rootfs> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:11 +msgid "" +"B<lh binary_rootfs> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:16 +msgid "" +"B<lh binary_rootfs> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:5 +msgid "B<lh binary_silo> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:8 +msgid "B<lh binary_silo> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:11 +msgid "" +"B<lh binary_silo> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:16 +msgid "" +"B<lh binary_silo> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:5 +msgid "B<lh binary_syslinux> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:8 +msgid "B<lh binary_syslinux> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:11 +msgid "" +"B<lh binary_syslinux> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:16 +msgid "" +"B<lh binary_syslinux> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:5 +msgid "B<lh binary_tar> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:8 +msgid "B<lh binary_tar> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:11 +msgid "" +"B<lh binary_tar> is a low-level command (plumbing) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:16 +msgid "" +"B<lh binary_tar> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:5 +msgid "B<lh binary_usb> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:8 +msgid "B<lh binary_usb> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:11 +msgid "" +"B<lh binary_usb> is a low-level command (plumbing) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:16 +msgid "" +"B<lh binary_usb> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:5 +msgid "B<lh binary_virtual-hdd> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:8 +msgid "B<lh binary_virtual-hdd> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:11 +msgid "" +"B<lh binary_virtual-hdd> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:16 +msgid "" +"B<lh binary_virtual-hdd> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:5 +msgid "B<lh binary_win32-loader> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:8 +msgid "B<lh binary_win32-loader> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:11 +msgid "" +"B<lh binary_win32-loader> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:16 +msgid "" +"B<lh binary_win32-loader> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:5 +msgid "B<lh binary_yaboot> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:8 +msgid "B<lh binary_yaboot> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:11 +msgid "" +"B<lh binary_yaboot> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:16 +msgid "" +"B<lh binary_yaboot> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:5 +msgid "B<lh bootstrap > - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:8 +msgid "B<lh bootstrap> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:11 +msgid "" +"B<lh bootstrap> is a high-level command (porcelain) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:13 +msgid "" +"B<lh bootstrap> 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<lh bootstrap> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:5 +msgid "B<lh bootstrap_cache> - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:8 +msgid "B<lh bootstrap_cache> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:11 +msgid "" +"B<lh bootstrap_cache> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:16 +msgid "" +"B<lh bootstrap_cache> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:5 +msgid "B<lh bootstrap_cdebootstrap> - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:8 +msgid "B<lh bootstrap_cdebootstrap> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:11 +msgid "" +"B<lh bootstrap_cdebootstrap> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:16 +msgid "" +"B<lh bootstrap_cdebootstrap> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:5 +msgid "B<lh bootstrap_copy> - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:8 +msgid "B<lh bootstrap_copy> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:11 +msgid "" +"B<lh bootstrap_copy> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:16 +msgid "" +"B<lh bootstrap_copy> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:5 +msgid "B<lh bootstrap_debootstrap> - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:8 +msgid "B<lh bootstrap_debootstrap> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:11 +msgid "" +"B<lh bootstrap_debootstrap> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:16 +msgid "" +"B<lh bootstrap_debootstrap> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_build.1:5 +msgid "B<lh build> - Complete the bootstrap, chroot, binary, and source stages" +msgstr "" + +#. type: Plain text +#: en/lh_build.1:8 +msgid "B<lh build> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_build.1:11 +msgid "" +"B<lh build> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_build.1:13 +msgid "" +"B<lh build> 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<lh build> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(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<auto/config>" +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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:5 +msgid "B<lh chroot> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:8 +msgid "B<lh chroot> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:11 +msgid "" +"B<lh chroot> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:13 +msgid "" +"B<lh chroot> 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<lh chroot> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:5 +msgid "B<lh chroot_apt> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:8 +msgid "B<lh chroot_apt> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:11 +msgid "" +"B<lh chroot_apt> is a low-level command (plumbing) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:16 +msgid "" +"B<lh chroot_apt> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:5 +msgid "B<lh chroot_cache> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:8 +msgid "B<lh chroot_cache> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:11 +msgid "" +"B<lh chroot_cache> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:16 +msgid "" +"B<lh chroot_cache> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:5 +msgid "B<lh chroot_debianchroot> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:8 +msgid "B<lh chroot_debianchroot> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:11 +msgid "" +"B<lh chroot_debianchroot> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:16 +msgid "" +"B<lh chroot_debianchroot> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:5 +msgid "B<lh chroot_devpts> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:8 +msgid "B<lh chroot_devpts> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:11 +msgid "" +"B<lh chroot_devpts> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:16 +msgid "" +"B<lh chroot_devpts> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:5 +msgid "B<lh chroot_dpkg> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:8 +msgid "B<lh chroot_dpkg> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:11 +msgid "" +"B<lh chroot_dpkg> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:16 +msgid "" +"B<lh chroot_dpkg> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:5 +msgid "B<lh chroot_hacks> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:8 +msgid "B<lh chroot_hacks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:11 +msgid "" +"B<lh chroot_hacks> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:16 +msgid "" +"B<lh chroot_hacks> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:5 +msgid "B<lh chroot_hooks> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:8 +msgid "B<lh chroot_hooks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:11 +msgid "" +"B<lh chroot_hooks> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:16 +msgid "" +"B<lh chroot_hooks> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:5 +msgid "B<lh chroot_hostname> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:8 +msgid "B<lh chroot_hostname> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:11 +msgid "" +"B<lh chroot_hostname> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:16 +msgid "" +"B<lh chroot_hostname> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:5 +msgid "B<lh chroot_hosts> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:8 +msgid "B<lh chroot_hosts> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:11 +msgid "" +"B<lh chroot_hosts> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:16 +msgid "" +"B<lh chroot_hosts> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:5 +msgid "B<lh chroot_install-packages> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:8 +msgid "B<lh chroot_install-packages> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:11 +msgid "" +"B<lh chroot_install-packages> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:16 +msgid "" +"B<lh chroot_install-packages> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:5 +msgid "B<lh chroot_interactive> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:8 +msgid "B<lh chroot_interactive> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:11 +msgid "" +"B<lh chroot_interactive> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:16 +msgid "" +"B<lh chroot_interactive> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:5 +msgid "B<lh chroot_linux-image> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:8 +msgid "B<lh chroot_linux-image> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:11 +msgid "" +"B<lh chroot_linux-image> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:16 +msgid "" +"B<lh chroot_linux-image> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:5 +msgid "B<lh chroot_local-hooks> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:8 +msgid "B<lh chroot_local-hooks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:11 +msgid "" +"B<lh chroot_local-hooks> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:16 +msgid "" +"B<lh chroot_local-hooks> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:5 +msgid "B<lh chroot_local-includes> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:8 +msgid "B<lh chroot_local-includes> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:11 +msgid "" +"B<lh chroot_local-includes> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:16 +msgid "" +"B<lh chroot_local-includes> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:5 +msgid "B<lh chroot_local-packages> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:8 +msgid "B<lh chroot_local-packages> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:11 +msgid "" +"B<lh chroot_local-packages> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:16 +msgid "" +"B<lh chroot_local-packages> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:5 +msgid "B<lh chroot_local-packageslists> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:8 +msgid "B<lh chroot_local-packageslists> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:11 +msgid "" +"B<lh chroot_local-packageslists> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:16 +msgid "" +"B<lh chroot_local-packageslists> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:5 +msgid "B<lh chroot_local-patches> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:8 +msgid "B<lh chroot_local-patches> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:11 +msgid "" +"B<lh chroot_local-patches> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:16 +msgid "" +"B<lh chroot_local-patches> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:5 +msgid "B<lh chroot_local-preseed> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:8 +msgid "B<lh chroot_local-preseed> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:11 +msgid "" +"B<lh chroot_local-preseed> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:16 +msgid "" +"B<lh chroot_local-preseed> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:5 +msgid "B<lh chroot_localization> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:8 +msgid "B<lh chroot_localization> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:11 +msgid "" +"B<lh chroot_localization> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:16 +msgid "" +"B<lh chroot_localization> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:5 +msgid "B<lh chroot_packages> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:8 +msgid "B<lh chroot_packages> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:11 +msgid "" +"B<lh chroot_packages> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:16 +msgid "" +"B<lh chroot_packages> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:5 +msgid "B<lh chroot_packageslists> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:8 +msgid "B<lh chroot_packageslists> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:11 +msgid "" +"B<lh chroot_packageslists> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:16 +msgid "" +"B<lh chroot_packageslists> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:5 +msgid "B<lh chroot_preseed> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:8 +msgid "B<lh chroot_preseed> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:11 +msgid "" +"B<lh chroot_preseed> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:16 +msgid "" +"B<lh chroot_preseed> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:5 +msgid "B<lh chroot_proc> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:8 +msgid "B<lh chroot_proc> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:11 +msgid "" +"B<lh chroot_proc> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:16 +msgid "" +"B<lh chroot_proc> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:5 +msgid "B<lh chroot_resolv> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:8 +msgid "B<lh chroot_resolv> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:11 +msgid "" +"B<lh chroot_resolv> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:16 +msgid "" +"B<lh chroot_resolv> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:5 +msgid "B<lh chroot_selinuxfs> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:8 +msgid "B<lh chroot_selinuxfs> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:11 +msgid "" +"B<lh chroot_selinuxfs> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:16 +msgid "" +"B<lh chroot_selinuxfs> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:5 +msgid "B<lh chroot_sources> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:8 +msgid "B<lh chroot_sources> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:11 +msgid "" +"B<lh chroot_sources> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:16 +msgid "" +"B<lh chroot_sources> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:5 +msgid "B<lh chroot_symlinks> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:8 +msgid "B<lh chroot_symlinks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:11 +msgid "" +"B<lh chroot_symlinks> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:16 +msgid "" +"B<lh chroot_symlinks> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:5 +msgid "B<lh chroot_sysfs> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:8 +msgid "B<lh chroot_sysfs> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:11 +msgid "" +"B<lh chroot_sysfs> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:16 +msgid "" +"B<lh chroot_sysfs> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:5 +msgid "B<lh chroot_sysv-rc> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:8 +msgid "B<lh chroot_sysv-rc> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:11 +msgid "" +"B<lh chroot_sysv-rc> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:16 +msgid "" +"B<lh chroot_sysv-rc> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:5 +msgid "B<lh chroot_sysvinit> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:8 +msgid "B<lh chroot_sysvinit> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:11 +msgid "" +"B<lh chroot_sysvinit> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:16 +msgid "" +"B<lh chroot_sysvinit> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:5 +msgid "B<lh chroot_tasks> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:8 +msgid "B<lh chroot_tasks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:11 +msgid "" +"B<lh chroot_tasks> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:16 +msgid "" +"B<lh chroot_tasks> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:5 +msgid "B<lh chroot_upstart> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:8 +msgid "B<lh chroot_upstart> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:11 +msgid "" +"B<lh chroot_upstart> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:16 +msgid "" +"B<lh chroot_upstart> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:5 +msgid "B<lh clean> - Clean build directory" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:8 +msgid "B<lh clean> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:11 +msgid "" +"B<lh clean> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. FIXME +#. FIXME +#. type: Plain text +#: en/lh_clean.1:15 +msgid "" +"B<lh clean> 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<lh clean> understands all generic live-" +"helper options. See I<live-helper>(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<auto/clean>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_build.1:19 en/lh_config.1:430 +#, no-wrap +msgid "B<auto/config>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:5 +msgid "B<lh config> - Create config directory" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:8 +msgid "B<lh config> [I<live-helper options>]" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:11 +msgid "B<lh config>" +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<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:17 +msgid " [B<--apt-http-proxy> I<URL>]" +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<OPTION>|\"I<OPTIONS>\"]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:23 +msgid " [B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\"]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:25 +msgid " [B<--apt-pipeline> I<DEPTH>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:27 +msgid " [B<--apt-recommends> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:29 +msgid " [B<--apt-secure> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:31 +msgid " [-a|B<--architecture> I<ARCHITECTURE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:33 +msgid " [-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:35 +msgid " [B<--binary-filesystem> fat16|fat32|ext2]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:37 +msgid " [B<--binary-indices> true|false|none]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:39 +msgid " [B<--bootappend-install> I<PARAMETER>|I<\"PARAMETERS\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:41 +msgid " [B<--bootappend-live> I<PARAMETER>|I<\"PARAMETERS\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:43 +msgid " [B<--bootloader> grub|syslinux|yaboot]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:45 +msgid " [B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:47 +msgid " [B<--bootstrap-config> I<FILE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:49 +msgid " [-f|B<--bootstrap-flavour> minimal|standard]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:51 +msgid " [B<--bootstrap-keyring> I<PACKAGE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:53 +msgid " [B<--cache> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:55 +msgid " [B<--cache-indices> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:57 +msgid " [B<--cache-packages> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:59 +msgid " [B<--cache-stages> I<STAGE>|I<\"STAGES\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:61 +msgid " [B<--checksums> md5|sha1|sha256|none]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:63 +msgid " [B<--chroot-build> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:65 +msgid " [B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:67 +msgid " [B<--clean]>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:69 +msgid "B<\t[-c|--conffile> I<FILE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:71 +msgid " [B<--debconf-frontend> dialog|editor|noninteractive|readline]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:73 +msgid " [B<--debconf-nowarnings> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:75 +msgid " [B<--debconf-priority> low|medium|high|critical]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:77 +msgid "" +" [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:79 +msgid " [B<--debian-installer-distribution> daily|I<CODENAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:81 +msgid " [B<--debian-installer-preseedfile> I<FILE>|I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:83 +msgid " [B<--debian-installer-gui> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:85 +msgid " [-d|B<--distribution> I<CODENAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:87 +msgid " [--B<dump>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:89 +msgid " [-e|B<--encryption> false|aes128|aes192|aes256]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:91 +msgid " [B<--fdisk> fdisk|fdisk.dist]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:93 +msgid " [B<--grub-splash> I<FILE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:95 +msgid " [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:97 +msgid " [B<--hooks> I<FILE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:99 +msgid " [B<--hostname> I<NAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:101 +msgid " [B<--ignore-system-defaults>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:103 +msgid " [B<--includes> I<PATH>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:105 +msgid " [B<--initramfs> auto|live-initramfs|casper]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:107 +msgid " [B<--interactive> shell]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:109 +msgid " [B<--iso-application> I<NAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:111 +msgid " [B<--iso-preparer> I<NAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:113 +msgid " [B<--iso-publisher> I<NAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:115 +msgid " [B<--iso-volume> I<NAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:117 +msgid " [B<--jffs2-eraseblock> I<SIZE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:119 +msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:121 +msgid " [-l|B<--language> I<LANGUAGE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:123 +msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:125 +msgid " [B<--linux-packages> I<\"PACKAGES\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:127 +msgid " [B<--losetup> losetup|losetup.orig]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:129 +msgid " [B<--memtest> memtest86+|memtest86|none]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:131 +msgid " [-m|B<--mirror-bootstrap> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:133 +msgid " [B<--mirror-binary> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:135 +msgid " [B<--mirror-binary-security> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:137 +msgid " [B<--mirror-chroot> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:139 +msgid " [B<--mirror-chroot-security> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:141 +msgid " [B<--mirror-debian-installer> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:143 +msgid " [B<--mode> debian|emdebian|ubuntu]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:145 +msgid " [B<--net-root-filesystem> nfs|cfs]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:147 +msgid " [B<--net-root-mountoptions> I<OPTIONS>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:149 +msgid " [B<--net-root-path> I<PATH>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:151 +msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:153 +msgid " [B<--net-cow-filesystem> nfs|cfs]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:155 +msgid " [B<--net-cow-mountoptions> I<OPTIONS>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:157 +msgid " [B<--net-cow-path> I<PATH>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:159 +msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:161 +msgid " [B<--net-tarball> bzip2|gzip|tar|none]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:163 +msgid " [-p|B<--packages-lists> I<LIST>|I<\"LISTS\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:165 +msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:167 +msgid " [B<-r, --repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:169 +msgid " [B<--root-command> sudo]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:171 +msgid " [B<--use-fakeroot> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:173 +msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:175 +msgid " [B<--security> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:177 +msgid " [B<--source> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:179 +msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:181 +msgid " [B<--symlinks> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:183 +msgid " [B<--syslinux-splash> I<FILE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:185 +msgid " [B<--syslinux-timeout> I<SECONDS>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:187 +msgid " [B<--syslinux-menu> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:189 +msgid " [B<--sysvinit> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:191 +msgid " [B<--tasksel> aptitude|tasksel]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:193 +msgid " [B<--tasks> I<TASK>|\"I<TASKS>\"]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:195 +msgid " [B<--templates> I<PATH>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:197 +msgid " [B<--virtual-root-filesystem> ext3]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:199 +msgid " [B<--virtual-root-size >I<MB>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:201 +msgid " [B<--exposed-root> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:203 +msgid " [B<--username> I<NAME>]" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:206 +msgid " [B<--win32-loader true|false]>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:209 +msgid "" +"B<lh config> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:212 +msgid "" +"B<lh config> populates the configuration directory for live-helper. By " +"default, this directory is named 'config' and is created in the current " +"directory where B<lh config> was executed." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:215 +msgid "" +"Note: Currently B<lh config> 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 B<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 B<lh config> called with one option only changes " +"that option, and leaves everything else as is unless its not defined. " +"However, B<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 B<lh config> again." +msgstr "" + +#. type: Plain text +#: en/lh_config.1:218 +msgid "" +"In addition to its specific options B<lh config> understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_config.1:220 +#, no-wrap +msgid "B<--apt> apt|aptitude" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:222 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:222 +#, no-wrap +msgid "B<--apt-ftp-proxy> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:224 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:224 +#, no-wrap +msgid "B<--apt-http-proxy> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:226 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:226 +#, no-wrap +msgid "B<--apt-pdiffs> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:228 +msgid "" +"defines whetever apt should use incremental package indices feature or not. " +"This is true by default." +msgstr "" + +#. type: IP +#: en/lh_config.1:228 +#, no-wrap +msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:230 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:230 +#, no-wrap +msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:232 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:232 +#, no-wrap +msgid "B<--apt-pipeline> I<DEPTH>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:234 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:234 +#, no-wrap +msgid "B<--apt-recommends> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:236 +msgid "" +"defines if apt should install recommended packages automatically. By " +"default, this is true except in emdebian mode." +msgstr "" + +#. type: IP +#: en/lh_config.1:236 +#, no-wrap +msgid "B<--apt-secure> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:238 +msgid "" +"defines if apt should check repository signatures. This is true by default." +msgstr "" + +#. type: IP +#: en/lh_config.1:238 +#, no-wrap +msgid "-a|B<--architecture> I<ARCHITECTURE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:240 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:240 +#, no-wrap +msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:242 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:242 +#, no-wrap +msgid "B<--binary-filesystem> fat16|fat32|ext2" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:244 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:244 +#, no-wrap +msgid "B<--binary-indices> true|false|none" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:246 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:246 +#, no-wrap +msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:248 +msgid "sets boot parameters specific to debian-installer, if included." +msgstr "" + +#. type: IP +#: en/lh_config.1:248 +#, no-wrap +msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:250 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:250 +#, no-wrap +msgid "B<--bootloader> grub|syslinux|yaboot" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:252 +msgid "" +"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. B<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." +msgstr "" + +#. type: IP +#: en/lh_config.1:252 +#, no-wrap +msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:254 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:254 +#, no-wrap +msgid "B<--bootstrap-config> I<FILE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:256 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:256 +#, no-wrap +msgid "-f|B<--bootstrap-flavour> minimal|standard" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:258 +msgid "" +"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)." +msgstr "" + +#. type: IP +#: en/lh_config.1:258 +#, no-wrap +msgid "B<--bootstrap-keyring> I<PACKAGE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:260 +msgid "" +"sets the archive keyring package to be used. Default is debian-archive-" +"keyring." +msgstr "" + +#. type: IP +#: en/lh_config.1:260 +#, no-wrap +msgid "B<--cache> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:262 +msgid "" +"defines globally if any cache should be used at all. Different caches can be " +"controled through the their own options." +msgstr "" + +#. type: IP +#: en/lh_config.1:262 +#, no-wrap +msgid "B<--cache-indices> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:264 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:264 +#, no-wrap +msgid "B<--cache-packages> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:266 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:266 +#, no-wrap +msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:268 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:268 +#, no-wrap +msgid "B<--checksums> md5|sha1|sha256|none" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:270 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:270 +#, no-wrap +msgid "B<--chroot-build> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:272 +msgid "" +"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 B<exactely> match what is present at build-time in " +"the target distribution. Never do disable this option unless you are " +"B<exactely> sure what you are doing and have B<completely>I< understood its " +"consequences.>" +msgstr "" + +#. type: IP +#: en/lh_config.1:272 +#, no-wrap +msgid "B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:274 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:274 +#, no-wrap +msgid "B<--clean>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:276 +msgid "" +"minimizes config directory by automatically removing unused and thus empty " +"subdirectories." +msgstr "" + +#. type: IP +#: en/lh_config.1:276 +#, no-wrap +msgid "-c|B<--conffile> I<FILE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:278 +msgid "" +"using a user specified alternative configuration file in addition to the " +"normally used one in the config directory." +msgstr "" + +#. type: IP +#: en/lh_config.1:278 +#, no-wrap +msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:280 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:280 +#, no-wrap +msgid "B<--debconf-nowarnings> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:282 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:282 +#, no-wrap +msgid "B<--debconf-priority> low|medium|high|critical" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:284 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:284 +#, no-wrap +msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:286 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:286 +#, no-wrap +msgid "B<--debian-installer-distribution> daily|I<CODENAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:288 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:288 +#, no-wrap +msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:290 +msgid "" +"sets the filename or URL for an optionally used and included preseeding file " +"for debian-installer." +msgstr "" + +#. type: IP +#: en/lh_config.1:290 +#, no-wrap +msgid "B<--debian-installer-gui> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:292 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:292 +#, no-wrap +msgid "-d|B<--distribution> I<CODENAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:294 +msgid "defines the distribution of the resulting live system." +msgstr "" + +#. type: IP +#: en/lh_config.1:294 +#, no-wrap +msgid "--B<dump>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:296 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:296 +#, no-wrap +msgid "-e|B<--encryption> false|aes128|aes192|aes256" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:298 +msgid "" +"defines if the root filesystem should be encrypted or not. By default, this " +"is false." +msgstr "" + +#. type: IP +#: en/lh_config.1:298 +#, no-wrap +msgid "B<--fdisk> fdisk|fdisk.dist" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:300 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:300 +#, no-wrap +msgid "B<--grub-splash> I<FILE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:302 +msgid "" +"defines the name of an optional to be included splash screen graphic for the " +"grub bootloader." +msgstr "" + +#. type: IP +#: en/lh_config.1:302 +#, no-wrap +msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:304 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:304 +#, no-wrap +msgid "B<--hooks> I<FILE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:306 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:306 +#, no-wrap +msgid "B<--hostname> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:308 +msgid "sets the hostname of the live system." +msgstr "" + +#. type: IP +#: en/lh_config.1:308 +#, no-wrap +msgid "B<--ignore-system-defaults>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:310 +msgid "" +"B<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." +msgstr "" + +#. type: IP +#: en/lh_config.1:310 +#, no-wrap +msgid "B<--includes> I<PATH>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:312 +msgid "" +"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/." +msgstr "" + +#. type: IP +#: en/lh_config.1:312 +#, no-wrap +msgid "B<--initramfs> auto|live-initramfs|casper" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:314 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:314 +#, no-wrap +msgid "B<--interactive> shell" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:316 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:316 +#, no-wrap +msgid "B<--iso-application> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:318 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:318 +#, no-wrap +msgid "B<--iso-preparer> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:320 +msgid "" +"sets the PREPARER field in the header of a resulting CD/DVD image. By " +"default this is set to \"live-helper I<VERSION>; http://packages.qa.debian." +"org/live-helper\", whereas VERSION is expanded to the version of live-helper " +"that was used to build the image." +msgstr "" + +#. type: IP +#: en/lh_config.1:320 +#, no-wrap +msgid "B<--iso-publisher> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:322 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:322 +#, no-wrap +msgid "B<--iso-volume> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:324 +msgid "" +"sets the VOLUME field in the header of a resulting CD/DVD and defaults to " +"'(I<MODE>) (I<DISTRIBUTION>) (I<DATE>)' 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 (I<VERSION>) (I<ARCHITECTURE>) " +"live' where VERSION becomes the numerical version of the release being built " +"and ARCHITECTURE becomes the name of the architecture." +msgstr "" + +#. type: IP +#: en/lh_config.1:324 +#, no-wrap +msgid "B<--jffs2-eraseblock> I<SIZE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:326 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:326 +#, no-wrap +msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:328 +msgid "" +"sets the keyring package or additional keyring packages. By default this is " +"set to debian-archive-keyring." +msgstr "" + +#. type: IP +#: en/lh_config.1:328 +#, no-wrap +msgid "-l|B<--language> I<LANGUAGE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:330 +msgid "" +"sets the language of a live system by installing l10n related packages and " +"enables generation of the correct locales through automatically setting the " +"right boot parameters." +msgstr "" + +#. type: IP +#: en/lh_config.1:330 +#, no-wrap +msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:332 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:332 +#, no-wrap +msgid "B<--linux-packages> \"I<PACKAGES>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:334 +msgid "" +"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 I<STUB>-I<FLAVOUR> 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." +msgstr "" + +#. type: IP +#: en/lh_config.1:334 +#, no-wrap +msgid "B<--losetup> losetup|losetup.orig" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:336 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:336 +#, no-wrap +msgid "B<--memtest> memtest86+|memtest86|none" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:338 +msgid "" +"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+." +msgstr "" + +#. type: IP +#: en/lh_config.1:338 +#, no-wrap +msgid "-m|B<--mirror-bootstrap> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:340 +msgid "" +"sets the location of the debian package mirror that should be used to " +"bootstrap from." +msgstr "" + +#. type: IP +#: en/lh_config.1:340 +#, no-wrap +msgid "B<--mirror-binary> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:342 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:342 +#, no-wrap +msgid "B<--mirror-binary-security> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:344 +msgid "" +"sets the location of the debian security package mirror that should end up " +"configuered in the final image. By default, the same value that is used for " +"--mirror-chroot-security is used here unless specified different." +msgstr "" + +#. type: IP +#: en/lh_config.1:344 +#, no-wrap +msgid "B<--mirror-chroot> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:346 +msgid "" +"sets the location of the debian package mirror that will be used to fetch " +"the packages in order to build the live system. By default, this points to " +"http://ftp.us.debian.org/debian/ which may not be a good default if you live " +"outside the U.S." +msgstr "" + +#. type: IP +#: en/lh_config.1:346 +#, no-wrap +msgid "B<--mirror-chroot-security> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:348 +msgid "" +"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/." +msgstr "" + +#. type: IP +#: en/lh_config.1:348 +#, no-wrap +msgid "B<--mirror-debian-installer> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:350 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:350 +#, no-wrap +msgid "B<--mode> debian|emdebian|ubuntu" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:352 +msgid "" +"defines a global mode to load project specific defaults. By default this is " +"set to debian." +msgstr "" + +#. type: IP +#: en/lh_config.1:352 +#, no-wrap +msgid "B<--net-root-filesystem> nfs|cfs" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:354 +msgid "" +"defines the filesystem that will be configured in the bootloader " +"configuration for your netboot image. This defaults to nfs." +msgstr "" + +#. type: IP +#: en/lh_config.1:354 +#, no-wrap +msgid "B<--net-root-mountoptions> I<OPTIONS>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:356 +msgid "" +"sets additional options for mounting the root filesystem in netboot images " +"and is by default empty." +msgstr "" + +#. type: IP +#: en/lh_config.1:356 +#, no-wrap +msgid "B<--net-root-path> I<PATH>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:358 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:358 +#, no-wrap +msgid "B<--net-root-server> I<IP>|I<HOSTNAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:360 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:360 +#, no-wrap +msgid "B<--net-cow-filesystem> nfs|cfs" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:362 +msgid "" +"defines the filesystem type for the copy-on-write layer and defaults to nfs." +msgstr "" + +#. type: IP +#: en/lh_config.1:362 +#, no-wrap +msgid "B<--net-cow-mountoptions> I<OPTIONS>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:364 +msgid "" +"sets additional options for mounting the copy-on-write layer in netboot " +"images and is by default empty." +msgstr "" + +#. type: IP +#: en/lh_config.1:364 +#, no-wrap +msgid "B<--net-cow-path> I<PATH>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:366 +msgid "" +"defines the path to client writable filesystem. Anywhere that " +"I<client_mac_address> is specified in the path live-initramfs will " +"substitute the MAC address of the client delimited with hyphens." +msgstr "" + +#. type: Plain text +#: en/lh_config.1:369 +msgid "Example:" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:371 +msgid "/export/hosts/client_mac_address" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:373 +msgid "/export/hosts/00-16-D3-33-92-E8" +msgstr "" + +#. type: IP +#: en/lh_config.1:373 +#, no-wrap +msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:375 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:375 +#, no-wrap +msgid "B<--net-tarball> bzip2|gzip|tar|none" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:377 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:377 +#, no-wrap +msgid "-p|B<--packages-lists> I<LIST>|\"I<LISTS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:379 +msgid "" +"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)." +msgstr "" + +#. type: IP +#: en/lh_config.1:379 +#, no-wrap +msgid "B<--packages> I<PACKAGE>|\"I<PACKAGES>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:381 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:381 +#, no-wrap +msgid "B<-r, --repositories> I<REPOSITORY>|\"I<REPOSITORIES>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:383 +msgid "" +"enables one of available third-party repository configurations in /usr/share/" +"live-helper/repositories." +msgstr "" + +#. type: IP +#: en/lh_config.1:383 +#, no-wrap +msgid "B<--root-command> sudo" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:385 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:385 +#, no-wrap +msgid "B<--use-fakeroot> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:387 +msgid "" +"controls if live-helper should utilize fakeroot and fakechroot to try and " +"avoid requiring root privillages where possible. By default, this option is " +"false." +msgstr "" + +#. type: IP +#: en/lh_config.1:387 +#, no-wrap +msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:389 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:389 +#, no-wrap +msgid "B<--security> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:391 +msgid "" +"defines if the security repositories specified in the security mirror " +"options should be used or not." +msgstr "" + +#. type: IP +#: en/lh_config.1:391 +#, no-wrap +msgid "B<--source> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:393 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:393 +#, no-wrap +msgid "-s|B<--source-images> iso|net|tar|usb-hdd" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:395 +msgid "defines the image type for the source image. Default is tar." +msgstr "" + +#. type: IP +#: en/lh_config.1:395 +#, no-wrap +msgid "B<--symlinks> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:397 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:397 +#, no-wrap +msgid "B<--syslinux-splash> I<FILE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:399 +msgid "" +"defines the file of the syslinux splash graphic that should be used instead " +"of the default one." +msgstr "" + +#. type: IP +#: en/lh_config.1:399 +#, no-wrap +msgid "B<--syslinux-timeout> I<SECONDS>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:401 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:401 +#, no-wrap +msgid "B<--syslinux-menu> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:403 +msgid "" +"defines if syslinux should be make use of the vgamenu capabilities or not." +msgstr "" + +#. type: IP +#: en/lh_config.1:403 +#, no-wrap +msgid "B<--sysvinit> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:405 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:405 +#, no-wrap +msgid "B<--tasksel> aptitude|tasksel" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:407 +msgid "" +"selects which program is used to install tasks. By default, this is set to " +"tasksel." +msgstr "" + +#. type: IP +#: en/lh_config.1:407 +#, no-wrap +msgid "B<--tasks> I<TASK>|\"I<TASKS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:409 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:409 +#, no-wrap +msgid "B<--templates> I<PATH>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:411 +msgid "" +"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/." +msgstr "" + +#. type: IP +#: en/lh_config.1:411 +#, no-wrap +msgid "B<--virtual-root-filesystem> ext3" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:413 +msgid "" +"defines what filesystem to format the root filesystem when building virtual-" +"hdd images." +msgstr "" + +#. type: IP +#: en/lh_config.1:413 +#, no-wrap +msgid "B<--virtual-root-size> MB" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:415 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:415 +#, no-wrap +msgid "B<--exposed-root> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:417 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:417 +#, no-wrap +msgid "B<--username> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:419 +msgid "sets the name of the account of the default user in the live system." +msgstr "" + +#. type: IP +#: en/lh_config.1:419 +#, no-wrap +msgid "B<--win32-loader true|false>" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:422 +msgid "defines if win32-loader should be included in the binary image or not." +msgstr "" + +#. type: SH +#: en/lh_config.1:423 +#, no-wrap +msgid "ENVIRONMENT" +msgstr "" + +#. FIXME +#. FIXME +#. type: Plain text +#: en/lh_config.1:427 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:431 +#, no-wrap +msgid "B</etc/default/live-helper>" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:434 +msgid "" +"An optional, global configuration file for B<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 B<--ignore-system-defaults> option." +msgstr "" diff --git a/manpages/po/de/lh_local.1.po b/manpages/po/de/lh_local.1.po new file mode 100644 index 000000000..82823a908 --- /dev/null +++ b/manpages/po/de/lh_local.1.po @@ -0,0 +1,716 @@ +# 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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_local.1:5 +msgid "B<lh_local> - wrapper for local live-helper programs" +msgstr "" + +#. type: Plain text +#: en/lh_local.1:8 +msgid "B<lh local> [I<live-helper\\ options>]" +msgstr "" + +#. type: Plain text +#: en/lh_local.1:11 +msgid "" +"B<lh local> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_local.1:16 +msgid "" +"B<lh local> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(7) for a complete list of all generic live-" +"helper options." +msgstr "" diff --git a/manpages/po/de/lh_source.1.po b/manpages/po/de/lh_source.1.po new file mode 100644 index 000000000..39e863742 --- /dev/null +++ b/manpages/po/de/lh_source.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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_source.1:5 +msgid "B<lh source> - Complete the source stage" +msgstr "" + +#. type: Plain text +#: en/lh_source.1:8 +msgid "B<lh source> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source.1:11 +msgid "" +"B<lh source> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source.1:13 +msgid "" +"B<lh source> calls all necessary live-helper programs in the correct order " +"to complete the source stage." +msgstr "" + +#. type: Plain text +#: en/lh_source.1:16 +msgid "" +"B<lh source> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(7) for a complete list of all generic live-" +"helper options." +msgstr "" diff --git a/manpages/po/de/lh_source_checksums.1.po b/manpages/po/de/lh_source_checksums.1.po new file mode 100644 index 000000000..71e69a19e --- /dev/null +++ b/manpages/po/de/lh_source_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_checksums.1:5 +msgid "B<lh sources_checksums> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_checksums.1:8 +msgid "B<lh sources_checksums> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_checksums.1:11 +msgid "" +"B<lh sources_checksums> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_checksums.1:16 +msgid "" +"B<lh sources_checksums> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/po/de/lh_source_debian-live.1.po b/manpages/po/de/lh_source_debian-live.1.po new file mode 100644 index 000000000..97e7aea6c --- /dev/null +++ b/manpages/po/de/lh_source_debian-live.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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian-live.1:5 +msgid "B<lh sources_debian-live> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian-live.1:8 +msgid "B<lh sources_debian-live> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian-live.1:11 +msgid "" +"B<lh sources_debian-live> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_debian-live.1:16 +msgid "" +"B<lh sources_debian-live> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/po/de/lh_source_debian.1.po b/manpages/po/de/lh_source_debian.1.po new file mode 100644 index 000000000..98e771e43 --- /dev/null +++ b/manpages/po/de/lh_source_debian.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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian.1:5 +msgid "B<lh sources_debian> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian.1:8 +msgid "B<lh sources_debian> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian.1:11 +msgid "" +"B<lh sources_debian> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_debian.1:16 +msgid "" +"B<lh sources_debian> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/po/de/lh_source_disk.1.po b/manpages/po/de/lh_source_disk.1.po new file mode 100644 index 000000000..bb31c5d60 --- /dev/null +++ b/manpages/po/de/lh_source_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_disk.1:5 +msgid "B<lh sources_disk> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_disk.1:8 +msgid "B<lh sources_disk> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_disk.1:11 +msgid "" +"B<lh sources_disk> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_disk.1:16 +msgid "" +"B<lh sources_disk> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/po/de/lh_source_iso.1.po b/manpages/po/de/lh_source_iso.1.po new file mode 100644 index 000000000..63816381d --- /dev/null +++ b/manpages/po/de/lh_source_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_iso.1:5 +msgid "B<lh sources_iso> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_iso.1:8 +msgid "B<lh sources_iso> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_iso.1:11 +msgid "" +"B<lh sources_iso> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_iso.1:16 +msgid "" +"B<lh sources_iso> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/po/de/lh_source_net.1.po b/manpages/po/de/lh_source_net.1.po new file mode 100644 index 000000000..654faf6f8 --- /dev/null +++ b/manpages/po/de/lh_source_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_net.1:5 +msgid "B<lh sources_net> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_net.1:8 +msgid "B<lh sources_net> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_net.1:11 +msgid "" +"B<lh sources_net> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_net.1:16 +msgid "" +"B<lh sources_net> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/po/de/lh_source_tar.1.po b/manpages/po/de/lh_source_tar.1.po new file mode 100644 index 000000000..35107042e --- /dev/null +++ b/manpages/po/de/lh_source_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_tar.1:5 +msgid "B<lh sources_tar> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_tar.1:8 +msgid "B<lh sources_tar> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_tar.1:11 +msgid "" +"B<lh sources_tar> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_tar.1:16 +msgid "" +"B<lh sources_tar> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/po/de/lh_source_usb.1.po b/manpages/po/de/lh_source_usb.1.po new file mode 100644 index 000000000..033752ef6 --- /dev/null +++ b/manpages/po/de/lh_source_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_usb.1:5 +msgid "B<lh sources_usb> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_usb.1:8 +msgid "B<lh sources_usb> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_usb.1:11 +msgid "" +"B<lh sources_usb> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_usb.1:16 +msgid "" +"B<lh sources_usb> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/po/de/lh_source_virtual-hdd.1.po b/manpages/po/de/lh_source_virtual-hdd.1.po new file mode 100644 index 000000000..b1189bccf --- /dev/null +++ b/manpages/po/de/lh_source_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_virtual-hdd.1:5 +msgid "B<lh sources_virtual-hdd> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_virtual-hdd.1:8 +msgid "B<lh sources_virtual-hdd> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_virtual-hdd.1:11 +msgid "" +"B<lh sources_virtual-hdd> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_virtual-hdd.1:16 +msgid "" +"B<lh sources_virtual-hdd> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/po/de/lh_testroot.1.po b/manpages/po/de/lh_testroot.1.po new file mode 100644 index 000000000..cf58268ed --- /dev/null +++ b/manpages/po/de/lh_testroot.1.po @@ -0,0 +1,733 @@ +# 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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_testroot.1:5 +msgid "B<lh testroot> - Ensure that a system is built as root" +msgstr "" + +#. type: Plain text +#: en/lh_testroot.1:8 +msgid "B<lh testroot> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_testroot.1:11 +msgid "" +"B<lh testroot> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_testroot.1:14 +msgid "" +"B<lh testroot> 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." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_testroot.1:17 +msgid "" +"Note: Support for using I<fakeroot>(1) and I<sudo>(8) internally in live-" +"helper itself is still experimental, however, calling a helper yourself with " +"sudo is safe." +msgstr "" + +#. type: Plain text +#: en/lh_testroot.1:20 +msgid "" +"B<lh testroot> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/po/de/live-helper.7.po b/manpages/po/de/live-helper.7.po new file mode 100644 index 000000000..0e97f7035 --- /dev/null +++ b/manpages/po/de/live-helper.7.po @@ -0,0 +1,1859 @@ +# 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: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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:5 +msgid "B<live-helper> - the Debian Live tool suite" +msgstr "" + +#. FIXME +#. FIXME +#. type: Plain text +#: en/live-helper.7:10 +msgid "" +"B<lh >I<COMMAND> [B<-h|--help>] [B<-u|--usage>] [B<-v|--version>] [B<--" +"breakpoints>] [B<--conffile>] [B<--debug>] [B<--force>] [B<--quiet>] [B<--" +"verbose>]" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:14 +msgid "" +"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." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:16 +msgid "The I<COMMAND> is a name of a live-helper command (see below)." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:19 +msgid "" +"More documentation about how to use live-helper is available in the " +"individual manpages for each helper and in the manual at E<lt>I<http://live." +"debian.net/manual/>E<gt>." +msgstr "" + +#. FIXME +#. type: SS +#: en/live-helper.7:22 +#, no-wrap +msgid "Shared live-helper options" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:24 +msgid "" +"The following command line options are supported by all live-helper programs." +msgstr "" + +#. type: IP +#: en/live-helper.7:24 +#, no-wrap +msgid "B<-h, --help>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:26 +msgid "display help and exit." +msgstr "" + +#. type: IP +#: en/live-helper.7:26 +#, no-wrap +msgid "B<-u, --usage>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:28 +msgid "show usage and exit." +msgstr "" + +#. type: IP +#: en/live-helper.7:28 +#, no-wrap +msgid "B<-v, --version>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:30 +msgid "output version information and exit." +msgstr "" + +#. type: SS +#: en/live-helper.7:30 +#, no-wrap +msgid "Common live-helper options" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:32 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/live-helper.7:32 +#, no-wrap +msgid "B<--breakpoints>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:34 +msgid "run with breakpoints." +msgstr "" + +#. type: IP +#: en/live-helper.7:34 +#, no-wrap +msgid "B<--conffile>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:36 +msgid "use custom configuration file." +msgstr "" + +#. type: IP +#: en/live-helper.7:36 +#, no-wrap +msgid "B<--debug>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:38 +msgid "show debug information." +msgstr "" + +#. type: IP +#: en/live-helper.7:38 +#, no-wrap +msgid "B<--force>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:40 +msgid "force helper execution, even if stage file exists." +msgstr "" + +#. type: IP +#: en/live-helper.7:40 +#, no-wrap +msgid "B<--quiet>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:42 +msgid "be quiet." +msgstr "" + +#. type: IP +#: en/live-helper.7:42 +#, no-wrap +msgid "B<--verbose>" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:45 +msgid "be verbose." +msgstr "" + +#. type: SH +#: en/live-helper.7:46 +#, no-wrap +msgid "LIVE-HELPER COMMANDS" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:49 +msgid "" +"We divide live-helper into high level (\"porcelain\") commands and low level " +"(\"plumbing\") commands." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:53 +msgid "" +"Here is the complete list of all available live-helper commands. See their " +"man pages for additional documentation." +msgstr "" + +#. type: SH +#: en/live-helper.7:54 +#, no-wrap +msgid "HIGH-LEVEL COMMANDS (PORCELAIN)" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:57 +msgid "" +"We separate the porcelain commands into the main commands and some ancillary " +"user utilities." +msgstr "" + +#. type: SS +#: en/live-helper.7:57 +#, no-wrap +msgid "Main porcelain commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:58 +#, no-wrap +msgid "B<lh_config>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:60 +msgid "create configuration for live-helper" +msgstr "" + +#. type: IP +#: en/live-helper.7:60 +#, no-wrap +msgid "B<lh_bootstrap>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:62 +msgid "create the first stage by bootstrapping a basic debian system" +msgstr "" + +#. type: IP +#: en/live-helper.7:62 +#, no-wrap +msgid "B<lh_chroot>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:64 +msgid "create the second stage by customizing the chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:64 +#, no-wrap +msgid "B<lh_binary>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:66 +msgid "create the third stage by generating a binary image" +msgstr "" + +#. type: IP +#: en/live-helper.7:66 +#, no-wrap +msgid "B<lh_source>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:68 +msgid "create the optional fourth stage by generating a source image" +msgstr "" + +#. type: IP +#: en/live-helper.7:68 +#, no-wrap +msgid "B<lh_clean>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:70 +msgid "clean up system build directories" +msgstr "" + +#. type: SS +#: en/live-helper.7:70 +#, no-wrap +msgid "Ancillary Commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:71 +#, no-wrap +msgid "B<lh>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:73 +msgid "generic live-helper wrapper" +msgstr "" + +#. type: IP +#: en/live-helper.7:73 +#, no-wrap +msgid "B<lh_build>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:75 +msgid "alias for all stages" +msgstr "" + +#. type: IP +#: en/live-helper.7:75 +#, no-wrap +msgid "B<lh_local>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:77 +msgid "helper for using a local live-helper" +msgstr "" + +#. type: IP +#: en/live-helper.7:77 +#, no-wrap +msgid "B<lh_testroot>(1)" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:80 +msgid "ensure that a system is built as root" +msgstr "" + +#. type: SH +#: en/live-helper.7:81 +#, no-wrap +msgid "LOW-LEVEL COMMANDS (PLUMBING)" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:84 +msgid "" +"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." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:86 +msgid "" +"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." +msgstr "" + +#. type: SS +#: en/live-helper.7:86 +#, no-wrap +msgid "Bootstrap commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:87 +#, no-wrap +msgid "B<lh_bootstrap_cache>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:89 +msgid "cache bootstrap stage" +msgstr "" + +#. type: IP +#: en/live-helper.7:89 +#, no-wrap +msgid "B<lh_bootstrap_cdebootstrap>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:91 +msgid "bootstrap a Debian system with cdebootstrap(1)" +msgstr "" + +#. type: IP +#: en/live-helper.7:91 +#, no-wrap +msgid "B<lh_bootstrap_copy>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:93 +msgid "bootstrap by copying the host system" +msgstr "" + +#. type: IP +#: en/live-helper.7:93 +#, no-wrap +msgid "B<lh_bootstrap_debootstrap>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:95 +msgid "bootstrap a Debian system with debootstrap(8)" +msgstr "" + +#. type: SS +#: en/live-helper.7:95 +#, no-wrap +msgid "Chroot commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:96 +#, no-wrap +msgid "B<lh_chroot_apt>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:98 +msgid "manage /etc/apt/apt.conf" +msgstr "" + +#. type: IP +#: en/live-helper.7:98 +#, no-wrap +msgid "B<lh_chroot_cache>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:100 +msgid "cache chroot stage" +msgstr "" + +#. type: IP +#: en/live-helper.7:100 +#, no-wrap +msgid "B<lh_chroot_debianchroot>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:102 +msgid "manage /etc/debian_chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:102 +#, no-wrap +msgid "B<lh_chroot_devpts>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:104 +msgid "mount /dev/pts" +msgstr "" + +#. type: IP +#: en/live-helper.7:104 +#, no-wrap +msgid "B<lh_chroot_dpkg>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:106 +msgid "manage /sbin/dpkg" +msgstr "" + +#. type: IP +#: en/live-helper.7:106 +#, no-wrap +msgid "B<lh_chroot_hacks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:108 +msgid "execute hacks in chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:108 +#, no-wrap +msgid "B<lh_chroot_hooks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:110 +msgid "execute hooks in chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:110 +#, no-wrap +msgid "B<lh_chroot_hostname>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:112 +msgid "manage /bin/hostname" +msgstr "" + +#. type: IP +#: en/live-helper.7:112 +#, no-wrap +msgid "B<lh_chroot_hosts>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:114 +msgid "manage /etc/hosts" +msgstr "" + +#. type: IP +#: en/live-helper.7:114 +#, no-wrap +msgid "B<lh_chroot_install-packages>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:116 +msgid "install queued packages into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:116 +#, no-wrap +msgid "B<lh_chroot_interactive>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:118 +msgid "make build interactive" +msgstr "" + +#. type: IP +#: en/live-helper.7:118 +#, no-wrap +msgid "B<lh_chroot_linux-image>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:120 +msgid "manage /etc/kernel-img.conf" +msgstr "" + +#. type: IP +#: en/live-helper.7:120 +#, no-wrap +msgid "B<lh_chroot_local-hooks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:122 +msgid "execute local hooks in chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:122 +#, no-wrap +msgid "B<lh_chroot_local-includes>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:124 +msgid "copy local files into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:124 +#, no-wrap +msgid "B<lh_chroot_localization>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:126 +msgid "install localization packages into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:126 +#, no-wrap +msgid "B<lh_chroot_local-packages>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:128 +msgid "queue install of local packages into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:128 +#, no-wrap +msgid "B<lh_chroot_local-patches>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:130 +msgid "apply local patches against chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:130 +#, no-wrap +msgid "B<lh_chroot_local-preseed>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:132 +msgid "use debconf local preseeding file" +msgstr "" + +#. type: IP +#: en/live-helper.7:132 +#, no-wrap +msgid "B<lh_chroot_packages>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:134 +msgid "queue install of packages into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:134 +#, no-wrap +msgid "B<lh_chroot_packageslists>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:136 +msgid "queue install of packages lists into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:136 +#, no-wrap +msgid "B<lh_chroot_preseed>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:138 +msgid "use debconf preseeding file" +msgstr "" + +#. type: IP +#: en/live-helper.7:138 +#, no-wrap +msgid "B<lh_chroot_proc>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:140 +msgid "mount /proc" +msgstr "" + +#. type: IP +#: en/live-helper.7:140 +#, no-wrap +msgid "B<lh_chroot_resolv>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:142 +msgid "manage /etc/resolv.conf" +msgstr "" + +#. type: IP +#: en/live-helper.7:142 +#, no-wrap +msgid "B<lh_chroot_selinuxfs>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:144 +msgid "mount /selinux" +msgstr "" + +#. type: IP +#: en/live-helper.7:144 +#, no-wrap +msgid "B<lh_chroot_sources>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:146 +msgid "manage /etc/apt/sources.list" +msgstr "" + +#. type: IP +#: en/live-helper.7:146 +#, no-wrap +msgid "B<lh_chroot_symlinks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:148 +msgid "convert symlinks" +msgstr "" + +#. type: IP +#: en/live-helper.7:148 +#, no-wrap +msgid "B<lh_chroot_sysfs>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:150 +msgid "mount /sys" +msgstr "" + +#. type: IP +#: en/live-helper.7:150 +#, no-wrap +msgid "B<lh_chroot_sysvinit>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:152 +msgid "configure sysvinit" +msgstr "" + +#. type: IP +#: en/live-helper.7:152 +#, no-wrap +msgid "B<lh_chroot_sysv-rc>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:154 +msgid "manage /usr/sbin/policy-rc.d" +msgstr "" + +#. type: IP +#: en/live-helper.7:154 +#, no-wrap +msgid "B<lh_chroot_tasks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:156 +msgid "install tasks into chroot" +msgstr "" + +#. type: SS +#: en/live-helper.7:156 +#, no-wrap +msgid "Binary commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:157 +#, no-wrap +msgid "B<lh_binary_chroot>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:159 +msgid "copy chroot into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:159 +#, no-wrap +msgid "B<lh_binary_debian-installer>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:161 +msgid "install debian-installer into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:161 +#, no-wrap +msgid "B<lh_binary_disk>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:163 +msgid "install disk information into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:163 +#, no-wrap +msgid "B<lh_binary_encryption>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:165 +msgid "encrypts rootfs" +msgstr "" + +#. type: IP +#: en/live-helper.7:165 +#, no-wrap +msgid "B<lh_binary_grub>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:167 +msgid "installs grub into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:167 +#, no-wrap +msgid "B<lh_binary_grub2>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:169 +msgid "installs grub2 into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:169 +#, no-wrap +msgid "B<lh_binary_includes>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:171 en/live-helper.7:179 +msgid "copy files into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:171 +#, no-wrap +msgid "B<lh_binary_iso>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:173 +msgid "build iso binary image" +msgstr "" + +#. type: IP +#: en/live-helper.7:173 +#, no-wrap +msgid "B<lh_binary_linux-image>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:175 +msgid "install linux-image into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:175 +#, no-wrap +msgid "B<lh_binary_local-hooks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:177 +msgid "execute local hooks in binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:177 +#, no-wrap +msgid "B<lh_binary_local-includes>(1)" +msgstr "" + +#. type: IP +#: en/live-helper.7:179 +#, no-wrap +msgid "B<lh_binary_local-packageslists>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:181 +msgid "install local packages lists into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:181 +#, no-wrap +msgid "B<lh_binary_manifest>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:183 +msgid "create manifest" +msgstr "" + +#. type: IP +#: en/live-helper.7:183 +#, no-wrap +msgid "B<lh_binary_checksums>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:185 +msgid "create binary checksums (md5, sha1, and/or sha256)" +msgstr "" + +#. type: IP +#: en/live-helper.7:185 +#, no-wrap +msgid "B<lh_binary_memtest>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:187 +msgid "installs a memtest into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:187 +#, no-wrap +msgid "B<lh_binary_net>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:189 +msgid "build netboot binary image" +msgstr "" + +#. type: IP +#: en/live-helper.7:189 +#, no-wrap +msgid "B<lh_binary_rootfs>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:191 +msgid "build rootfs image" +msgstr "" + +#. type: IP +#: en/live-helper.7:191 +#, no-wrap +msgid "B<lh_binary_silo>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:193 +msgid "installs silo into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:193 +#, no-wrap +msgid "B<lh_binary_syslinux>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:195 +msgid "installs syslinux into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:195 +#, no-wrap +msgid "B<lh_binary_tar>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:197 +msgid "build harddisk binary image" +msgstr "" + +#. type: IP +#: en/live-helper.7:197 +#, no-wrap +msgid "B<lh_binary_usb>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:199 +msgid "build binary usb-hdd image" +msgstr "" + +#. type: IP +#: en/live-helper.7:199 +#, no-wrap +msgid "B<lh_binary_virtual-hdd>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:201 +msgid "build binary virtual-hdd image" +msgstr "" + +#. type: IP +#: en/live-helper.7:201 +#, no-wrap +msgid "B<lh_binary_win32-loader>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:203 +msgid "installs win32-loader into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:203 +#, no-wrap +msgid "B<lh_binary_yaboot>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:205 +msgid "installs yaboot into binary" +msgstr "" + +#. type: SS +#: en/live-helper.7:205 +#, no-wrap +msgid "Source commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:206 +#, no-wrap +msgid "B<lh_source_debian>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:208 +msgid "download sources" +msgstr "" + +#. type: IP +#: en/live-helper.7:208 +#, no-wrap +msgid "B<lh_source_debian-live>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:210 +msgid "copy debian-live config into source" +msgstr "" + +#. type: IP +#: en/live-helper.7:210 +#, no-wrap +msgid "B<lh_source_disk>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:212 +msgid "install disk information into source" +msgstr "" + +#. type: IP +#: en/live-helper.7:212 +#, no-wrap +msgid "B<lh_source_iso>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:214 +msgid "build iso source image" +msgstr "" + +#. type: IP +#: en/live-helper.7:214 +#, no-wrap +msgid "B<lh_source_checksums>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:216 +msgid "create source checksums (md5, sha1, and/or sha256)" +msgstr "" + +#. type: IP +#: en/live-helper.7:216 +#, no-wrap +msgid "B<lh_source_net>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:218 +msgid "build source net image" +msgstr "" + +#. type: IP +#: en/live-helper.7:218 +#, no-wrap +msgid "B<lh_source_tar>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:220 +msgid "build source tarball" +msgstr "" + +#. type: IP +#: en/live-helper.7:220 +#, no-wrap +msgid "B<lh_source_usb>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:222 +msgid "build source usb-hdd image" +msgstr "" + +#. type: IP +#: en/live-helper.7:222 +#, no-wrap +msgid "B<lh_source_virtual-hdd>(1)" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:225 +msgid "build source virtual-hdd image" +msgstr "" + +#. type: SH +#: en/live-helper.7:226 +#, no-wrap +msgid "CONFIG FILES" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:229 +msgid "" +"Many live-helper commands make use of files in the I<config/> directory to " +"control what they do. Besides the common I<config/common>, 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)." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:231 +msgid "" +"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." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:233 +msgid "" +"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." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:235 +msgid "" +"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." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:238 +msgid "" +"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." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:246 +msgid "I<live-initramfs>(7)" +msgstr "" diff --git a/manpages/po4a.cfg b/manpages/po4a.cfg new file mode 100644 index 000000000..c6583ab41 --- /dev/null +++ b/manpages/po4a.cfg @@ -0,0 +1,82 @@ +[po4a_langs] de +[po4a_paths] pot/$master.pot $lang:po/$lang/$master.po +[type: man] en/lh.1 $lang:$lang/lh.$lang.1 +[type: man] en/lh_binary.1 $lang:$lang/lh_binary.$lang.1 +[type: man] en/lh_binary_checksums.1 $lang:$lang/lh_binary_checksums.$lang.1 +[type: man] en/lh_binary_chroot.1 $lang:$lang/lh_binary_chroot.$lang.1 +[type: man] en/lh_binary_debian-installer.1 $lang:$lang/lh_binary_debian-installer.$lang.1 +[type: man] en/lh_binary_disk.1 $lang:$lang/lh_binary_disk.$lang.1 +[type: man] en/lh_binary_encryption.1 $lang:$lang/lh_binary_encryption.$lang.1 +[type: man] en/lh_binary_grub.1 $lang:$lang/lh_binary_grub.$lang.1 +[type: man] en/lh_binary_grub2.1 $lang:$lang/lh_binary_grub2.$lang.1 +[type: man] en/lh_binary_includes.1 $lang:$lang/lh_binary_includes.$lang.1 +[type: man] en/lh_binary_iso.1 $lang:$lang/lh_binary_iso.$lang.1 +[type: man] en/lh_binary_linux-image.1 $lang:$lang/lh_binary_linux-image.$lang.1 +[type: man] en/lh_binary_local-hooks.1 $lang:$lang/lh_binary_local-hooks.$lang.1 +[type: man] en/lh_binary_local-includes.1 $lang:$lang/lh_binary_local-includes.$lang.1 +[type: man] en/lh_binary_local-packageslists.1 $lang:$lang/lh_binary_local-packageslists.$lang.1 +[type: man] en/lh_binary_manifest.1 $lang:$lang/lh_binary_manifest.$lang.1 +[type: man] en/lh_binary_memtest.1 $lang:$lang/lh_binary_memtest.$lang.1 +[type: man] en/lh_binary_net.1 $lang:$lang/lh_binary_net.$lang.1 +[type: man] en/lh_binary_rootfs.1 $lang:$lang/lh_binary_rootfs.$lang.1 +[type: man] en/lh_binary_silo.1 $lang:$lang/lh_binary_silo.$lang.1 +[type: man] en/lh_binary_syslinux.1 $lang:$lang/lh_binary_syslinux.$lang.1 +[type: man] en/lh_binary_tar.1 $lang:$lang/lh_binary_tar.$lang.1 +[type: man] en/lh_binary_usb.1 $lang:$lang/lh_binary_usb.$lang.1 +[type: man] en/lh_binary_virtual-hdd.1 $lang:$lang/lh_binary_virtual-hdd.$lang.1 +[type: man] en/lh_binary_win32-loader.1 $lang:$lang/lh_binary_win32-loader.$lang.1 +[type: man] en/lh_binary_yaboot.1 $lang:$lang/lh_binary_yaboot.$lang.1 +[type: man] en/lh_bootstrap.1 $lang:$lang/lh_bootstrap.$lang.1 +[type: man] en/lh_bootstrap_cache.1 $lang:$lang/lh_bootstrap_cache.$lang.1 +[type: man] en/lh_bootstrap_cdebootstrap.1 $lang:$lang/lh_bootstrap_cdebootstrap.$lang.1 +[type: man] en/lh_bootstrap_copy.1 $lang:$lang/lh_bootstrap_copy.$lang.1 +[type: man] en/lh_bootstrap_debootstrap.1 $lang:$lang/lh_bootstrap_debootstrap.$lang.1 +[type: man] en/lh_build.1 $lang:$lang/lh_build.$lang.1 +[type: man] en/lh_chroot.1 $lang:$lang/lh_chroot.$lang.1 +[type: man] en/lh_chroot_apt.1 $lang:$lang/lh_chroot_apt.$lang.1 +[type: man] en/lh_chroot_cache.1 $lang:$lang/lh_chroot_cache.$lang.1 +[type: man] en/lh_chroot_debianchroot.1 $lang:$lang/lh_chroot_debianchroot.$lang.1 +[type: man] en/lh_chroot_devpts.1 $lang:$lang/lh_chroot_devpts.$lang.1 +[type: man] en/lh_chroot_dpkg.1 $lang:$lang/lh_chroot_dpkg.$lang.1 +[type: man] en/lh_chroot_hacks.1 $lang:$lang/lh_chroot_hacks.$lang.1 +[type: man] en/lh_chroot_hooks.1 $lang:$lang/lh_chroot_hooks.$lang.1 +[type: man] en/lh_chroot_hostname.1 $lang:$lang/lh_chroot_hostname.$lang.1 +[type: man] en/lh_chroot_hosts.1 $lang:$lang/lh_chroot_hosts.$lang.1 +[type: man] en/lh_chroot_install-packages.1 $lang:$lang/lh_chroot_install-packages.$lang.1 +[type: man] en/lh_chroot_interactive.1 $lang:$lang/lh_chroot_interactive.$lang.1 +[type: man] en/lh_chroot_linux-image.1 $lang:$lang/lh_chroot_linux-image.$lang.1 +[type: man] en/lh_chroot_local-hooks.1 $lang:$lang/lh_chroot_local-hooks.$lang.1 +[type: man] en/lh_chroot_local-includes.1 $lang:$lang/lh_chroot_local-includes.$lang.1 +[type: man] en/lh_chroot_localization.1 $lang:$lang/lh_chroot_localization.$lang.1 +[type: man] en/lh_chroot_local-packages.1 $lang:$lang/lh_chroot_local-packages.$lang.1 +[type: man] en/lh_chroot_local-packageslists.1 $lang:$lang/lh_chroot_local-packageslists.$lang.1 +[type: man] en/lh_chroot_local-patches.1 $lang:$lang/lh_chroot_local-patches.$lang.1 +[type: man] en/lh_chroot_local-preseed.1 $lang:$lang/lh_chroot_local-preseed.$lang.1 +[type: man] en/lh_chroot_packages.1 $lang:$lang/lh_chroot_packages.$lang.1 +[type: man] en/lh_chroot_packageslists.1 $lang:$lang/lh_chroot_packageslists.$lang.1 +[type: man] en/lh_chroot_preseed.1 $lang:$lang/lh_chroot_preseed.$lang.1 +[type: man] en/lh_chroot_proc.1 $lang:$lang/lh_chroot_proc.$lang.1 +[type: man] en/lh_chroot_resolv.1 $lang:$lang/lh_chroot_resolv.$lang.1 +[type: man] en/lh_chroot_selinuxfs.1 $lang:$lang/lh_chroot_selinuxfs.$lang.1 +[type: man] en/lh_chroot_sources.1 $lang:$lang/lh_chroot_sources.$lang.1 +[type: man] en/lh_chroot_symlinks.1 $lang:$lang/lh_chroot_symlinks.$lang.1 +[type: man] en/lh_chroot_sysfs.1 $lang:$lang/lh_chroot_sysfs.$lang.1 +[type: man] en/lh_chroot_sysvinit.1 $lang:$lang/lh_chroot_sysvinit.$lang.1 +[type: man] en/lh_chroot_sysv-rc.1 $lang:$lang/lh_chroot_sysv-rc.$lang.1 +[type: man] en/lh_chroot_tasks.1 $lang:$lang/lh_chroot_tasks.$lang.1 +[type: man] en/lh_chroot_upstart.1 $lang:$lang/lh_chroot_upstart.$lang.1 +[type: man] en/lh_clean.1 $lang:$lang/lh_clean.$lang.1 +[type: man] en/lh_config.1 $lang:$lang/lh_config.$lang.1 +[type: man] en/lh_local.1 $lang:$lang/lh_local.$lang.1 +[type: man] en/lh_source.1 $lang:$lang/lh_source.$lang.1 +[type: man] en/lh_source_checksums.1 $lang:$lang/lh_source_checksums.$lang.1 +[type: man] en/lh_source_debian.1 $lang:$lang/lh_source_debian.$lang.1 +[type: man] en/lh_source_debian-live.1 $lang:$lang/lh_source_debian-live.$lang.1 +[type: man] en/lh_source_disk.1 $lang:$lang/lh_source_disk.$lang.1 +[type: man] en/lh_source_iso.1 $lang:$lang/lh_source_iso.$lang.1 +[type: man] en/lh_source_net.1 $lang:$lang/lh_source_net.$lang.1 +[type: man] en/lh_source_tar.1 $lang:$lang/lh_source_tar.$lang.1 +[type: man] en/lh_source_usb.1 $lang:$lang/lh_source_usb.$lang.1 +[type: man] en/lh_source_virtual-hdd.1 $lang:$lang/lh_source_virtual-hdd.$lang.1 +[type: man] en/lh_testroot.1 $lang:$lang/lh_testroot.$lang.1 +[type: man] en/live-helper.7 $lang:$lang/live-helper.$lang.7 diff --git a/manpages/po4a/live-helper.cfg b/manpages/po4a/live-helper.cfg deleted file mode 100644 index 8dba880ae..000000000 --- a/manpages/po4a/live-helper.cfg +++ /dev/null @@ -1,81 +0,0 @@ -[po4a_langs] de fr - -[po4a_paths] po4a/pot/$master.pot $lang:po4a/$lang/$master.po - -[type: man] lh_binary_chroot.en.1 $lang:lh_binary_chroot.$lang.1 -[type: man] lh_binary_debian-installer.en.1 $lang:lh_binary_debian-installer.$lang.1 -[type: man] lh_binary_disk.en.1 $lang:lh_binary_disk.$lang.1 -[type: man] lh_binary.en.1 $lang:lh_binary.$lang.1 -[type: man] lh_binary_encryption.en.1 $lang:lh_binary_encryption.$lang.1 -[type: man] lh_binary_grub.en.1 $lang:lh_binary_grub.$lang.1 -[type: man] lh_binary_includes.en.1 $lang:lh_binary_includes.$lang.1 -[type: man] lh_binary_iso.en.1 $lang:lh_binary_iso.$lang.1 -[type: man] lh_binary_linux-image.en.1 $lang:lh_binary_linux-image.$lang.1 -[type: man] lh_binary_local-hooks.en.1 $lang:lh_binary_local-hooks.$lang.1 -[type: man] lh_binary_local-includes.en.1 $lang:lh_binary_local-includes.$lang.1 -[type: man] lh_binary_local-packageslists.en.1 $lang:lh_binary_local-packageslists.$lang.1 -[type: man] lh_binary_manifest.en.1 $lang:lh_binary_manifest.$lang.1 -[type: man] lh_binary_md5sum.en.1 $lang:lh_binary_md5sum.$lang.1 -[type: man] lh_binary_memtest.en.1 $lang:lh_binary_memtest.$lang.1 -[type: man] lh_binary_net.en.1 $lang:lh_binary_net.$lang.1 -[type: man] lh_binary_rootfs.en.1 $lang:lh_binary_rootfs.$lang.1 -[type: man] lh_binary_silo.en.1 $lang:lh_binary_silo.$lang.1 -[type: man] lh_binary_syslinux.en.1 $lang:lh_binary_syslinux.$lang.1 -[type: man] lh_binary_tar.en.1 $lang:lh_binary_tar.$lang.1 -[type: man] lh_binary_usb-hdd.en.1 $lang:lh_binary_usb-hdd.$lang.1 -[type: man] lh_binary_virtual-hdd.en.1 $lang:lh_binary_virtual-hdd.$lang.1 -[type: man] lh_binary_win32-loader.en.1 $lang:lh_binary_win32-loader.$lang.1 -[type: man] lh_binary_yaboot.en.1 $lang:lh_binary_yaboot.$lang.1 -[type: man] lh_bootstrap_cache.en.1 $lang:lh_bootstrap_cache.$lang.1 -[type: man] lh_bootstrap_cdebootstrap.en.1 $lang:lh_bootstrap_cdebootstrap.$lang.1 -[type: man] lh_bootstrap_copy.en.1 $lang:lh_bootstrap_copy.$lang.1 -[type: man] lh_bootstrap_debootstrap.en.1 $lang:lh_bootstrap_debootstrap.$lang.1 -[type: man] lh_bootstrap.en.1 $lang:lh_bootstrap.$lang.1 -[type: man] lh_build.en.1 $lang:lh_build.$lang.1 -[type: man] lh_chroot_apt.en.1 $lang:lh_chroot_apt.$lang.1 -[type: man] lh_chroot_cache.en.1 $lang:lh_chroot_cache.$lang.1 -[type: man] lh_chroot_debianchroot.en.1 $lang:lh_chroot_debianchroot.$lang.1 -[type: man] lh_chroot_devpts.en.1 $lang:lh_chroot_devpts.$lang.1 -[type: man] lh_chroot_dpkg.en.1 $lang:lh_chroot_dpkg.$lang.1 -[type: man] lh_chroot.en.1 $lang:lh_chroot.$lang.1 -[type: man] lh_chroot_hacks.en.1 $lang:lh_chroot_hacks.$lang.1 -[type: man] lh_chroot_hooks.en.1 $lang:lh_chroot_hooks.$lang.1 -[type: man] lh_chroot_hostname.en.1 $lang:lh_chroot_hostname.$lang.1 -[type: man] lh_chroot_hosts.en.1 $lang:lh_chroot_hosts.$lang.1 -[type: man] lh_chroot_install-packages.en.1 $lang:lh_chroot_install-packages.$lang.1 -[type: man] lh_chroot_interactive.en.1 $lang:lh_chroot_interactive.$lang.1 -[type: man] lh_chroot_linux-image.en.1 $lang:lh_chroot_linux-image.$lang.1 -[type: man] lh_chroot_local-hooks.en.1 $lang:lh_chroot_local-hooks.$lang.1 -[type: man] lh_chroot_local-includes.en.1 $lang:lh_chroot_local-includes.$lang.1 -[type: man] lh_chroot_localization.en.1 $lang:lh_chroot_localization.$lang.1 -[type: man] lh_chroot_local-packages.en.1 $lang:lh_chroot_local-packages.$lang.1 -[type: man] lh_chroot_local-patches.en.1 $lang:lh_chroot_local-patches.$lang.1 -[type: man] lh_chroot_local-preseed.en.1 $lang:lh_chroot_local-preseed.$lang.1 -[type: man] lh_chroot_packages.en.1 $lang:lh_chroot_packages.$lang.1 -[type: man] lh_chroot_packageslists.en.1 $lang:lh_chroot_packageslists.$lang.1 -[type: man] lh_chroot_preseed.en.1 $lang:lh_chroot_preseed.$lang.1 -[type: man] lh_chroot_proc.en.1 $lang:lh_chroot_proc.$lang.1 -[type: man] lh_chroot_resolv.en.1 $lang:lh_chroot_resolv.$lang.1 -[type: man] lh_chroot_selinuxfs.en.1 $lang:lh_chroot_selinuxfs.$lang.1 -[type: man] lh_chroot_sources.en.1 $lang:lh_chroot_sources.$lang.1 -[type: man] lh_chroot_symlinks.en.1 $lang:lh_chroot_symlinks.$lang.1 -[type: man] lh_chroot_sysfs.en.1 $lang:lh_chroot_sysfs.$lang.1 -[type: man] lh_chroot_sysvinit.en.1 $lang:lh_chroot_sysvinit.$lang.1 -[type: man] lh_chroot_sysv-rc.en.1 $lang:lh_chroot_sysv-rc.$lang.1 -[type: man] lh_chroot_tasks.en.1 $lang:lh_chroot_tasks.$lang.1 -[type: man] lh_clean.en.1 $lang:lh_clean.$lang.1 -[type: man] lh_config.en.1 $lang:lh_config.$lang.1 -[type: man] lh.en.1 $lang:lh.$lang.1 -[type: man] lh_local.en.1 $lang:lh_local.$lang.1 -[type: man] lh_source_debian.en.1 $lang:lh_source_debian.$lang.1 -[type: man] lh_source_debian-live.en.1 $lang:lh_source_debian-live.$lang.1 -[type: man] lh_source_disk.en.1 $lang:lh_source_disk.$lang.1 -[type: man] lh_source.en.1 $lang:lh_source.$lang.1 -[type: man] lh_source_iso.en.1 $lang:lh_source_iso.$lang.1 -[type: man] lh_source_md5sum.en.1 $lang:lh_source_md5sum.$lang.1 -[type: man] lh_source_net.en.1 $lang:lh_source_net.$lang.1 -[type: man] lh_source_tar.en.1 $lang:lh_source_tar.$lang.1 -[type: man] lh_source_usb-hdd.en.1 $lang:lh_source_usb-hdd.$lang.1 -[type: man] lh_source_virtual-hdd.en.1 $lang:lh_source_virtual-hdd.$lang.1 -[type: man] lh_testroot.en.1 $lang:lh_testroot.$lang.1 -[type: man] live-helper.en.7 $lang:live-helper.$lang.7 diff --git a/manpages/po4a/pot/lh.en.1.pot b/manpages/po4a/pot/lh.en.1.pot deleted file mode 100644 index 66e134d6e..000000000 --- a/manpages/po4a/pot/lh.en.1.pot +++ /dev/null @@ -1,184 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:42+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 lh_chroot.en.1:3 -#: lh_clean.en.1:3 lh_config.en.1:3 lh.en.1:3 lh_source.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 lh_chroot.en.1:6 -#: lh_clean.en.1:6 lh_config.en.1:6 lh.en.1:6 lh_source.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 lh_chroot.en.1:9 -#: lh_clean.en.1:11 lh_config.en.1:201 lh.en.1:11 lh_source.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary.en.1:12 lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot.en.1:12 -#: lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 lh_source.en.1:12 -#: lh_testroot.en.1:14 live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary.en.1:15 lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot.en.1:15 -#: lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 lh_source.en.1:15 -#: lh_testroot.en.1:17 live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:17 lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot.en.1:17 -#: lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 lh_source.en.1:17 -#: lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: SH -#: lh_binary.en.1:20 lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot.en.1:20 -#: lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 lh_source.en.1:20 -#: lh_testroot.en.1:22 live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:22 lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot.en.1:22 -#: lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 lh_source.en.1:22 -#: lh_testroot.en.1:24 live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:23 lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot.en.1:23 -#: lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 lh_source.en.1:23 -#: lh_testroot.en.1:25 live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:25 lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot.en.1:25 -#: lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 lh_source.en.1:25 -#: lh_testroot.en.1:27 live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:26 lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot.en.1:26 -#: lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 lh_source.en.1:26 -#: lh_testroot.en.1:28 live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:27 lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot.en.1:27 -#: lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 lh_source.en.1:27 -#: lh_testroot.en.1:29 live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh.en.1:1 -#, no-wrap -msgid "LH" -msgstr "" - -# type: Plain text -#: lh.en.1:5 -msgid "live-helper - generic live-helper wrapper" -msgstr "" - -# type: Plain text -#: lh.en.1:8 -msgid "B<lh> COMMAND [COMMAND_OPTIONS]" -msgstr "" - -# type: Plain text -#: lh.en.1:10 -msgid "B<lh> [I<live-helper\\ options>]" -msgstr "" - -# type: Plain text -#: lh.en.1:13 -msgid "" -"lh is a high-level command (porcelain) of live-helper, the Debian Live tool " -"suite. It is a a generic wrapper for live-helper programs. Instead of " -"calling \"lh_I<COMMAND>\", it can also called through lh as \"lh I<COMMAND>" -"\", 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." -msgstr "" - -# type: Plain text -#: lh.en.1:16 -msgid "" -"lh has no specific options but understands all generic live-helper options. " -"See I<live-helper>(7) for a complete list of all generic live-helper options." -msgstr "" - -# type: Plain text -#: lh.en.1:21 -msgid "This program is part of live-helper." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary.en.1.pot b/manpages/po4a/pot/lh_binary.en.1.pot deleted file mode 100644 index 744966adc..000000000 --- a/manpages/po4a/pot/lh_binary.en.1.pot +++ /dev/null @@ -1,629 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary.en.1:1 -#, no-wrap -msgid "LH_BINARY" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:5 lh_build.en.1:5 -msgid "lh_binary - create the third stage by generating a binary image" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:8 lh_build.en.1:8 -msgid "B<lh_binary> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_binary.en.1:14 -msgid "" -"lh_binary has no specific options but understands all generic live-helper " -"options. See I<live-helper>(7) for a complete list of all generic live-" -"helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_checksums.en.1.pot b/manpages/po4a/pot/lh_binary_checksums.en.1.pot deleted file mode 100644 index 968f29ade..000000000 --- a/manpages/po4a/pot/lh_binary_checksums.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_md5sum.en.1:1 -#, no-wrap -msgid "LH_BINARY_MD5SUM" -msgstr "" - -# type: Plain text -#: lh_binary_md5sum.en.1:5 -msgid "lh_binary_md5sum - create binary md5sums" -msgstr "" - -# type: Plain text -#: lh_binary_md5sum.en.1:8 -msgid "B<lh_binary_md5sum> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_md5sum.en.1:11 -msgid "" -"lh_binary_md5sum is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It creates binary md5sums." -msgstr "" - -# type: Plain text -#: lh_binary_md5sum.en.1:14 -msgid "" -"lh_binary_md5sum has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_chroot.en.1.pot b/manpages/po4a/pot/lh_binary_chroot.en.1.pot deleted file mode 100644 index cba67244e..000000000 --- a/manpages/po4a/pot/lh_binary_chroot.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 -#, no-wrap -msgid "LH_BINARY_CHROOT" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:5 -msgid "lh_binary_chroot - download sources" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:8 -msgid "B<lh_binary_chroot> [I<live-helper options>]" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:11 -msgid "" -"lh_binary_chroot is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It downloads sources." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:14 -msgid "" -"lh_binary_chroot has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_debian-installer.en.1.pot b/manpages/po4a/pot/lh_binary_debian-installer.en.1.pot deleted file mode 100644 index b8e906bf6..000000000 --- a/manpages/po4a/pot/lh_binary_debian-installer.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_debian-installer.en.1:1 -#, no-wrap -msgid "LH_BINARY_DEBIAN_INSTALLER" -msgstr "" - -# type: Plain text -#: lh_binary_debian-installer.en.1:5 -msgid "lh_binary_debian-installer - install debian-installer into binary" -msgstr "" - -# type: Plain text -#: lh_binary_debian-installer.en.1:8 -msgid "B<lh_binary_debian-installer> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_debian-installer.en.1:11 -msgid "" -"lh_binary_debian-installer is a low-level command (plumbing) of live-helper, " -"the Debian Live tool suite. It installs debian-installer into binary." -msgstr "" - -# type: Plain text -#: lh_binary_debian-installer.en.1:14 -msgid "" -"lh_binary_debian-installer has no specific options but understands all " -"generic live-helper options. See I<live-helper>(7) for a complete list of " -"all generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_disk.en.1.pot b/manpages/po4a/pot/lh_binary_disk.en.1.pot deleted file mode 100644 index b2923fd0a..000000000 --- a/manpages/po4a/pot/lh_binary_disk.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_disk.en.1:1 -#, no-wrap -msgid "LH_BINARY_DISK" -msgstr "" - -# type: Plain text -#: lh_binary_disk.en.1:5 -msgid "lh_binary_disk - install disk information into binary" -msgstr "" - -# type: Plain text -#: lh_binary_disk.en.1:8 -msgid "B<lh_binary_disk> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_disk.en.1:11 -msgid "" -"lh_binary_disk is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It installs disk information into binary." -msgstr "" - -# type: Plain text -#: lh_binary_disk.en.1:14 -msgid "" -"lh_binary_disk has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_encryption.en.1.pot b/manpages/po4a/pot/lh_binary_encryption.en.1.pot deleted file mode 100644 index cead5f726..000000000 --- a/manpages/po4a/pot/lh_binary_encryption.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_encryption.en.1:1 -#, no-wrap -msgid "LH_BINARY_ENCRYPTION" -msgstr "" - -# type: Plain text -#: lh_binary_encryption.en.1:5 -msgid "lh_binary_encryption - encrypt rootfs" -msgstr "" - -# type: Plain text -#: lh_binary_encryption.en.1:8 -msgid "B<lh_binary_encryption> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_encryption.en.1:11 -msgid "" -"lh_binary_encryption is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It encrypts rootfs." -msgstr "" - -# type: Plain text -#: lh_binary_encryption.en.1:14 -msgid "" -"lh_binary_encryption has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_grub.en.1.pot b/manpages/po4a/pot/lh_binary_grub.en.1.pot deleted file mode 100644 index 8031af825..000000000 --- a/manpages/po4a/pot/lh_binary_grub.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_grub.en.1:1 -#, no-wrap -msgid "LH_BINARY_GRUB" -msgstr "" - -# type: Plain text -#: lh_binary_grub.en.1:5 -msgid "lh_binary_grub - install grub into binary" -msgstr "" - -# type: Plain text -#: lh_binary_grub.en.1:8 -msgid "B<lh_binary_grub> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_grub.en.1:11 -msgid "" -"lh_binary_grub is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It installs grub into binary." -msgstr "" - -# type: Plain text -#: lh_binary_grub.en.1:14 -msgid "" -"lh_binary_grub has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_includes.en.1.pot b/manpages/po4a/pot/lh_binary_includes.en.1.pot deleted file mode 100644 index facc7a244..000000000 --- a/manpages/po4a/pot/lh_binary_includes.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_includes.en.1:1 -#, no-wrap -msgid "LH_BINARY_INCLUDES" -msgstr "" - -# type: Plain text -#: lh_binary_includes.en.1:5 -msgid "lh_binary_includes - copy files into binary" -msgstr "" - -# type: Plain text -#: lh_binary_includes.en.1:8 -msgid "B<lh_binary_includes> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_includes.en.1:11 -msgid "" -"lh_binary_includes is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It copies files into binary." -msgstr "" - -# type: Plain text -#: lh_binary_includes.en.1:14 -msgid "" -"lh_binary_includes has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_iso.en.1.pot b/manpages/po4a/pot/lh_binary_iso.en.1.pot deleted file mode 100644 index 09bed85fd..000000000 --- a/manpages/po4a/pot/lh_binary_iso.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_iso.en.1:1 -#, no-wrap -msgid "LH_BINARY_ISO" -msgstr "" - -# type: Plain text -#: lh_binary_iso.en.1:5 -msgid "lh_binary_iso - build iso binary image" -msgstr "" - -# type: Plain text -#: lh_binary_iso.en.1:8 -msgid "B<lh_binary_iso> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_iso.en.1:11 -msgid "" -"lh_binary_iso is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It builds iso binary images." -msgstr "" - -# type: Plain text -#: lh_binary_iso.en.1:14 -msgid "" -"lh_binary_iso has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_linux-image.en.1.pot b/manpages/po4a/pot/lh_binary_linux-image.en.1.pot deleted file mode 100644 index 5c1a0d696..000000000 --- a/manpages/po4a/pot/lh_binary_linux-image.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_linux-image.en.1:1 -#, no-wrap -msgid "LH_BINARY_LINUX-IMAGE" -msgstr "" - -# type: Plain text -#: lh_binary_linux-image.en.1:5 -msgid "lh_binary_linux-image - install linux-image into binary" -msgstr "" - -# type: Plain text -#: lh_binary_linux-image.en.1:8 -msgid "B<lh_binary_linux-image> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_linux-image.en.1:11 -msgid "" -"lh_binary_linux-image is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It installs linux-image into binary." -msgstr "" - -# type: Plain text -#: lh_binary_linux-image.en.1:14 -msgid "" -"lh_binary_linux-image has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_local-hooks.en.1.pot b/manpages/po4a/pot/lh_binary_local-hooks.en.1.pot deleted file mode 100644 index 35bf9fd95..000000000 --- a/manpages/po4a/pot/lh_binary_local-hooks.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_local-hooks.en.1:1 -#, no-wrap -msgid "LH_BINARY_LOCAL-HOOKS" -msgstr "" - -# type: Plain text -#: lh_binary_local-hooks.en.1:5 -msgid "lh_binary_local-hooks - execute local hooks in binary" -msgstr "" - -# type: Plain text -#: lh_binary_local-hooks.en.1:8 -msgid "B<lh_binary_local-hooks> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_local-hooks.en.1:11 -msgid "" -"lh_binary_local-hooks is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It executes local hooks in binary." -msgstr "" - -# type: Plain text -#: lh_binary_local-hooks.en.1:14 -msgid "" -"lh_binary_local-hooks has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_local-includes.en.1.pot b/manpages/po4a/pot/lh_binary_local-includes.en.1.pot deleted file mode 100644 index 8b3d8f002..000000000 --- a/manpages/po4a/pot/lh_binary_local-includes.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_local-includes.en.1:1 -#, no-wrap -msgid "LH_BINARY_LOCAL-INCLUDES" -msgstr "" - -# type: Plain text -#: lh_binary_local-includes.en.1:5 -msgid "lh_binary_local-includes - copy files into binary" -msgstr "" - -# type: Plain text -#: lh_binary_local-includes.en.1:8 -msgid "B<lh_binary_local-includes> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_local-includes.en.1:11 -msgid "" -"lh_binary_local-includes is a low-level command (plumbing) of live-helper, " -"the Debian Live tool suite. It copies files into binary." -msgstr "" - -# type: Plain text -#: lh_binary_local-includes.en.1:14 -msgid "" -"lh_binary_local-includes has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_local-packageslists.en.1.pot b/manpages/po4a/pot/lh_binary_local-packageslists.en.1.pot deleted file mode 100644 index ea17795d8..000000000 --- a/manpages/po4a/pot/lh_binary_local-packageslists.en.1.pot +++ /dev/null @@ -1,644 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_local-packageslists.en.1:1 -#, no-wrap -msgid "LH_BINARY_LOCAL-PACKAGESLISTS" -msgstr "" - -# type: Plain text -#: lh_binary_local-packageslists.en.1:5 -msgid "" -"lh_binary_local-packageslists - install local packages lists into binary" -msgstr "" - -# type: Plain text -#: lh_binary_local-packageslists.en.1:8 -msgid "B<lh_binary_local-packageslists> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_local-packageslists.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_binary_local-packageslists.en.1:14 -msgid "" -"lh_binary_local-packageslists has no specific options but understands all " -"generic live-helper options. See I<live-helper>(7) for a complete list of " -"all generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_manifest.en.1.pot b/manpages/po4a/pot/lh_binary_manifest.en.1.pot deleted file mode 100644 index ed00e18eb..000000000 --- a/manpages/po4a/pot/lh_binary_manifest.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_manifest.en.1:1 -#, no-wrap -msgid "LH_BINARY_MANIFEST" -msgstr "" - -# type: Plain text -#: lh_binary_manifest.en.1:5 -msgid "lh_binary_manifest - create manifest" -msgstr "" - -# type: Plain text -#: lh_binary_manifest.en.1:8 -msgid "B<lh_binary_manifest> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_manifest.en.1:11 -msgid "" -"lh_binary_manifest is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It creats the manifest." -msgstr "" - -# type: Plain text -#: lh_binary_manifest.en.1:14 -msgid "" -"lh_binary_manifest has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_memtest.en.1.pot b/manpages/po4a/pot/lh_binary_memtest.en.1.pot deleted file mode 100644 index 57984331b..000000000 --- a/manpages/po4a/pot/lh_binary_memtest.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_memtest.en.1:1 -#, no-wrap -msgid "LH_BINARY_MEMTEST" -msgstr "" - -# type: Plain text -#: lh_binary_memtest.en.1:5 -msgid "lh_binary_memtest - install a memtest into binary" -msgstr "" - -# type: Plain text -#: lh_binary_memtest.en.1:8 -msgid "B<lh_binary_memtest> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_memtest.en.1:11 -msgid "" -"lh_binary_memtest is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It installs a memtest into binary." -msgstr "" - -# type: Plain text -#: lh_binary_memtest.en.1:14 -msgid "" -"lh_binary_memtest has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_net.en.1.pot b/manpages/po4a/pot/lh_binary_net.en.1.pot deleted file mode 100644 index 2f144baac..000000000 --- a/manpages/po4a/pot/lh_binary_net.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_net.en.1:1 -#, no-wrap -msgid "LH_BINARY_NET" -msgstr "" - -# type: Plain text -#: lh_binary_net.en.1:5 -msgid "lh_binary_net - build netboot binary image" -msgstr "" - -# type: Plain text -#: lh_binary_net.en.1:8 -msgid "B<lh_binary_net> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_net.en.1:11 -msgid "" -"lh_binary_net is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It builds netboot binary image." -msgstr "" - -# type: Plain text -#: lh_binary_net.en.1:14 -msgid "" -"lh_binary_net has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_rootfs.en.1.pot b/manpages/po4a/pot/lh_binary_rootfs.en.1.pot deleted file mode 100644 index e1f45e5ce..000000000 --- a/manpages/po4a/pot/lh_binary_rootfs.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_rootfs.en.1:1 -#, no-wrap -msgid "LH_BINARY_ROOTFS" -msgstr "" - -# type: Plain text -#: lh_binary_rootfs.en.1:5 -msgid "lh_binary_rootfs - build rootfs image" -msgstr "" - -# type: Plain text -#: lh_binary_rootfs.en.1:8 -msgid "B<lh_binary_rootfs> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_rootfs.en.1:11 -msgid "" -"lh_binary_rootfs is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It builds rootfs image." -msgstr "" - -# type: Plain text -#: lh_binary_rootfs.en.1:14 -msgid "" -"lh_binary_rootfs has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_silo.en.1.pot b/manpages/po4a/pot/lh_binary_silo.en.1.pot deleted file mode 100644 index b3979f4e1..000000000 --- a/manpages/po4a/pot/lh_binary_silo.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_silo.en.1:1 -#, no-wrap -msgid "LH_BINARY_SILO" -msgstr "" - -# type: Plain text -#: lh_binary_silo.en.1:5 -msgid "lh_binary_silo - install silo into binary" -msgstr "" - -# type: Plain text -#: lh_binary_silo.en.1:8 -msgid "B<lh_binary_silo> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_silo.en.1:11 -msgid "" -"lh_binary_silo is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It installs silo into binary." -msgstr "" - -# type: Plain text -#: lh_binary_silo.en.1:14 -msgid "" -"lh_binary_silo has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_syslinux.en.1.pot b/manpages/po4a/pot/lh_binary_syslinux.en.1.pot deleted file mode 100644 index 7221e9e5e..000000000 --- a/manpages/po4a/pot/lh_binary_syslinux.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_syslinux.en.1:1 -#, no-wrap -msgid "LH_BINARY_SYSLINUX" -msgstr "" - -# type: Plain text -#: lh_binary_syslinux.en.1:5 -msgid "lh_binary_syslinux - install syslinux into binary" -msgstr "" - -# type: Plain text -#: lh_binary_syslinux.en.1:8 -msgid "B<lh_binary_syslinux> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_syslinux.en.1:11 -msgid "" -"lh_binary_syslinux is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It installs syslinux into binary." -msgstr "" - -# type: Plain text -#: lh_binary_syslinux.en.1:14 -msgid "" -"lh_binary_syslinux has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_tar.en.1.pot b/manpages/po4a/pot/lh_binary_tar.en.1.pot deleted file mode 100644 index f627d2312..000000000 --- a/manpages/po4a/pot/lh_binary_tar.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_tar.en.1:1 -#, no-wrap -msgid "LH_BINARY_TAR" -msgstr "" - -# type: Plain text -#: lh_binary_tar.en.1:5 -msgid "lh_binary_tar - build harddisk binary image" -msgstr "" - -# type: Plain text -#: lh_binary_tar.en.1:8 -msgid "B<lh_binary_tar> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_tar.en.1:11 -msgid "" -"lh_binary_tar is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It builds harddisk binary image." -msgstr "" - -# type: Plain text -#: lh_binary_tar.en.1:14 -msgid "" -"lh_binary_tar has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_usb.en.1.pot b/manpages/po4a/pot/lh_binary_usb.en.1.pot deleted file mode 100644 index 24592899a..000000000 --- a/manpages/po4a/pot/lh_binary_usb.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_usb-hdd.en.1:1 -#, no-wrap -msgid "LH_BINARY_USB-HDD" -msgstr "" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:5 -msgid "lh_binary_usb-hdd - build binary usb-hdd image" -msgstr "" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:8 -msgid "B<lh_binary_usb-hdd> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:11 -msgid "" -"lh_binary_usb-hdd is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It builds binary usb-hdd image." -msgstr "" - -# type: Plain text -#: lh_binary_usb-hdd.en.1:14 -msgid "" -"lh_binary_usb-hdd has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_virtual-hdd.en.1.pot b/manpages/po4a/pot/lh_binary_virtual-hdd.en.1.pot deleted file mode 100644 index e2c775000..000000000 --- a/manpages/po4a/pot/lh_binary_virtual-hdd.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_virtual-hdd.en.1:1 -#, no-wrap -msgid "LH_BINARY_VIRTUAL-HDD" -msgstr "" - -# type: Plain text -#: lh_binary_virtual-hdd.en.1:5 -msgid "lh_binary_virtual-hdd - build binary virtual-hdd image" -msgstr "" - -# type: Plain text -#: lh_binary_virtual-hdd.en.1:8 -msgid "B<lh_binary_virtual-hdd> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_virtual-hdd.en.1:11 -msgid "" -"lh_binary_virtual-hdd is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It builds binary virtual-hdd image." -msgstr "" - -# type: Plain text -#: lh_binary_virtual-hdd.en.1:14 -msgid "" -"lh_binary_virtual-hdd has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_win32-loader.en.1.pot b/manpages/po4a/pot/lh_binary_win32-loader.en.1.pot deleted file mode 100644 index f9c7066f9..000000000 --- a/manpages/po4a/pot/lh_binary_win32-loader.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_win32-loader.en.1:1 -#, no-wrap -msgid "LH_BINARY_WIN32-LOADER" -msgstr "" - -# type: Plain text -#: lh_binary_win32-loader.en.1:5 -msgid "lh_binary_win32-loader - install win32-loader into binary" -msgstr "" - -# type: Plain text -#: lh_binary_win32-loader.en.1:8 -msgid "B<lh_binary_win32-loader> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_win32-loader.en.1:11 -msgid "" -"lh_binary_win32-loader is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It installs win32-loader into binary." -msgstr "" - -# type: Plain text -#: lh_binary_win32-loader.en.1:14 -msgid "" -"lh_binary_win32-loader has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_binary_yaboot.en.1.pot b/manpages/po4a/pot/lh_binary_yaboot.en.1.pot deleted file mode 100644 index 772ce964d..000000000 --- a/manpages/po4a/pot/lh_binary_yaboot.en.1.pot +++ /dev/null @@ -1,642 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:17 lh_binary_debian-installer.en.1:17 -#: lh_binary_disk.en.1:17 lh_binary_encryption.en.1:17 lh_binary_grub.en.1:17 -#: lh_binary_includes.en.1:17 lh_binary_iso.en.1:17 -#: lh_binary_linux-image.en.1:17 lh_binary_local-hooks.en.1:17 -#: lh_binary_local-includes.en.1:17 lh_binary_local-packageslists.en.1:17 -#: lh_binary_manifest.en.1:17 lh_binary_md5sum.en.1:17 -#: lh_binary_memtest.en.1:17 lh_binary_net.en.1:17 lh_binary_rootfs.en.1:17 -#: lh_binary_silo.en.1:17 lh_binary_syslinux.en.1:17 lh_binary_tar.en.1:17 -#: lh_binary_usb-hdd.en.1:17 lh_binary_virtual-hdd.en.1:17 -#: lh_binary_win32-loader.en.1:17 lh_binary_yaboot.en.1:17 -msgid "I<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_binary_yaboot.en.1:1 -#, no-wrap -msgid "LH_BINARY_YABOOT" -msgstr "" - -# type: Plain text -#: lh_binary_yaboot.en.1:5 -msgid "lh_binary_yaboot - install yaboot into binary" -msgstr "" - -# type: Plain text -#: lh_binary_yaboot.en.1:8 -msgid "B<lh_binary_yaboot> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_binary_yaboot.en.1:11 -msgid "" -"lh_binary_yaboot is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It installs yaboot into binary." -msgstr "" - -# type: Plain text -#: lh_binary_yaboot.en.1:14 -msgid "" -"lh_binary_yaboot has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_bootstrap.en.1.pot b/manpages/po4a/pot/lh_bootstrap.en.1.pot deleted file mode 100644 index 8eca2322b..000000000 --- a/manpages/po4a/pot/lh_bootstrap.en.1.pot +++ /dev/null @@ -1,179 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:42+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 lh_chroot.en.1:3 -#: lh_clean.en.1:3 lh_config.en.1:3 lh.en.1:3 lh_source.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 lh_chroot.en.1:6 -#: lh_clean.en.1:6 lh_config.en.1:6 lh.en.1:6 lh_source.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 lh_chroot.en.1:9 -#: lh_clean.en.1:11 lh_config.en.1:201 lh.en.1:11 lh_source.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary.en.1:12 lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot.en.1:12 -#: lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 lh_source.en.1:12 -#: lh_testroot.en.1:14 live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary.en.1:15 lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot.en.1:15 -#: lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 lh_source.en.1:15 -#: lh_testroot.en.1:17 live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:17 lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot.en.1:17 -#: lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 lh_source.en.1:17 -#: lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:19 lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot.en.1:19 -#: lh_clean.en.1:38 lh_config.en.1:419 lh_source.en.1:19 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary.en.1:20 lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot.en.1:20 -#: lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 lh_source.en.1:20 -#: lh_testroot.en.1:22 live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:22 lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot.en.1:22 -#: lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 lh_source.en.1:22 -#: lh_testroot.en.1:24 live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:23 lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot.en.1:23 -#: lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 lh_source.en.1:23 -#: lh_testroot.en.1:25 live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:25 lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot.en.1:25 -#: lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 lh_source.en.1:25 -#: lh_testroot.en.1:27 live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:26 lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot.en.1:26 -#: lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 lh_source.en.1:26 -#: lh_testroot.en.1:28 live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:27 lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot.en.1:27 -#: lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 lh_source.en.1:27 -#: lh_testroot.en.1:29 live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_bootstrap.en.1:1 -#, no-wrap -msgid "LH_BOOTSTRAP" -msgstr "" - -# type: Plain text -#: lh_bootstrap.en.1:5 -msgid "" -"lh_bootstrap - create the first stage by bootstrapping a basic debian system" -msgstr "" - -# type: Plain text -#: lh_bootstrap.en.1:8 -msgid "B<lh_bootstrap> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_bootstrap.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_bootstrap.en.1:14 -msgid "" -"lh_bootstrap has no specific options but understands all generic live-helper " -"options. See I<live-helper>(7) for a complete list of all generic live-" -"helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_bootstrap_cache.en.1.pot b/manpages/po4a/pot/lh_bootstrap_cache.en.1.pot deleted file mode 100644 index c32298dc0..000000000 --- a/manpages/po4a/pot/lh_bootstrap_cache.en.1.pot +++ /dev/null @@ -1,634 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_bootstrap_cache.en.1:1 -#, no-wrap -msgid "LH_BOOTSTRAP_CACHE" -msgstr "" - -# type: Plain text -#: lh_bootstrap_cache.en.1:5 -msgid "lh_bootstrap - cache bootstrap stage" -msgstr "" - -# type: Plain text -#: lh_bootstrap_cache.en.1:8 -msgid "B<lh_bootstrap_cache> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_bootstrap_cache.en.1:11 -msgid "" -"lh_bootstrap_cache is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It caches the bootstrap stage." -msgstr "" - -# type: Plain text -#: lh_bootstrap_cache.en.1:14 -msgid "" -"lh_bootstrap_cache has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" - -# type: Plain text -#: lh_bootstrap_cache.en.1:17 lh_bootstrap_cdebootstrap.en.1:17 -#: lh_bootstrap_copy.en.1:19 lh_bootstrap_debootstrap.en.1:17 -msgid "I<lh_bootstrap>(1)" -msgstr "" diff --git a/manpages/po4a/pot/lh_bootstrap_cdebootstrap.en.1.pot b/manpages/po4a/pot/lh_bootstrap_cdebootstrap.en.1.pot deleted file mode 100644 index 4e429b389..000000000 --- a/manpages/po4a/pot/lh_bootstrap_cdebootstrap.en.1.pot +++ /dev/null @@ -1,641 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_bootstrap_cache.en.1:17 lh_bootstrap_cdebootstrap.en.1:17 -#: lh_bootstrap_copy.en.1:19 lh_bootstrap_debootstrap.en.1:17 -msgid "I<lh_bootstrap>(1)" -msgstr "" - -# type: TH -#: lh_bootstrap_cdebootstrap.en.1:1 -#, no-wrap -msgid "LH_BOOTSTRAP_CDEBOOTSTRAP" -msgstr "" - -# type: Plain text -#: lh_bootstrap_cdebootstrap.en.1:5 -msgid "" -"lh_bootstrap_cdebootstrap - bootstrap a Debian system with I<cdebootstrap>(1)" -msgstr "" - -# type: Plain text -#: lh_bootstrap_cdebootstrap.en.1:8 -msgid "B<lh_bootstrap_cdebootstrap> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_bootstrap_cdebootstrap.en.1:11 -msgid "" -"lh_bootstrap_cdebootstrap is a low-level command (plumbing) of live-helper, " -"the Debian Live tool suite. It bootstraps a Debian system with I<cdebootstrap" -"(1)>." -msgstr "" - -# type: Plain text -#: lh_bootstrap_cdebootstrap.en.1:14 -msgid "" -"lh_bootstrap_cdebootstrap has no specific options but understands all " -"generic live-helper options. See I<live-helper>(7) for a complete list of " -"all generic live-helper options." -msgstr "" - -# type: Plain text -#: lh_bootstrap_cdebootstrap.en.1:19 -msgid "I<cdebootstrap>(1)" -msgstr "" diff --git a/manpages/po4a/pot/lh_bootstrap_copy.en.1.pot b/manpages/po4a/pot/lh_bootstrap_copy.en.1.pot deleted file mode 100644 index 3bffb50b0..000000000 --- a/manpages/po4a/pot/lh_bootstrap_copy.en.1.pot +++ /dev/null @@ -1,643 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_bootstrap_cache.en.1:17 lh_bootstrap_cdebootstrap.en.1:17 -#: lh_bootstrap_copy.en.1:19 lh_bootstrap_debootstrap.en.1:17 -msgid "I<lh_bootstrap>(1)" -msgstr "" - -# type: TH -#: lh_bootstrap_copy.en.1:1 -#, no-wrap -msgid "LH_BOOTSTRAP_COPY" -msgstr "" - -# type: Plain text -#: lh_bootstrap_copy.en.1:5 -msgid "lh_bootstrap_copy - bootstrap by copying the host system" -msgstr "" - -# type: Plain text -#: lh_bootstrap_copy.en.1:8 -msgid "B<lh_bootstrap_copy> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_bootstrap_copy.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_bootstrap_copy.en.1:13 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_bootstrap_copy.en.1:16 -msgid "" -"lh_bootstrap_copy has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_bootstrap_debootstrap.en.1.pot b/manpages/po4a/pot/lh_bootstrap_debootstrap.en.1.pot deleted file mode 100644 index d997237ff..000000000 --- a/manpages/po4a/pot/lh_bootstrap_debootstrap.en.1.pot +++ /dev/null @@ -1,641 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_bootstrap_cache.en.1:17 lh_bootstrap_cdebootstrap.en.1:17 -#: lh_bootstrap_copy.en.1:19 lh_bootstrap_debootstrap.en.1:17 -msgid "I<lh_bootstrap>(1)" -msgstr "" - -# type: TH -#: lh_bootstrap_debootstrap.en.1:1 -#, no-wrap -msgid "LH_BOOTSTRAP_DEBOOTSTRAP" -msgstr "" - -# type: Plain text -#: lh_bootstrap_debootstrap.en.1:5 -msgid "" -"lh_bootstrap_debootstrap - bootstrap a Debian system with I<debootstrap>(8)" -msgstr "" - -# type: Plain text -#: lh_bootstrap_debootstrap.en.1:8 -msgid "B<lh_bootstrap_debootstrap> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_bootstrap_debootstrap.en.1:11 -msgid "" -"lh_bootstrap_debootstrap is a low-level command (plumbing) of live-helper, " -"the Debian Live tool suite. It bootstraps a Debian system with I<debootstrap" -"(8)>." -msgstr "" - -# type: Plain text -#: lh_bootstrap_debootstrap.en.1:14 -msgid "" -"lh_bootstrap_debootstrap has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" - -# type: Plain text -#: lh_bootstrap_debootstrap.en.1:19 -msgid "I<debootstrap>(8)" -msgstr "" diff --git a/manpages/po4a/pot/lh_build.en.1.pot b/manpages/po4a/pot/lh_build.en.1.pot deleted file mode 100644 index 3bb7c008f..000000000 --- a/manpages/po4a/pot/lh_build.en.1.pot +++ /dev/null @@ -1,629 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_binary.en.1:5 lh_build.en.1:5 -msgid "lh_binary - create the third stage by generating a binary image" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:8 lh_build.en.1:8 -msgid "B<lh_binary> [I<live-helper options>]" -msgstr "" - -# type: TH -#: lh_build.en.1:1 -#, no-wrap -msgid "LH_BUILD" -msgstr "" - -# type: Plain text -#: lh_build.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_build.en.1:14 -msgid "" -"lh_build has no specific options but understands all generic live-helper " -"options. See I<live-helper>(7) for a complete list of all generic live-" -"helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot.en.1.pot b/manpages/po4a/pot/lh_chroot.en.1.pot deleted file mode 100644 index 317afaa69..000000000 --- a/manpages/po4a/pot/lh_chroot.en.1.pot +++ /dev/null @@ -1,178 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:42+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 lh_chroot.en.1:3 -#: lh_clean.en.1:3 lh_config.en.1:3 lh.en.1:3 lh_source.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 lh_chroot.en.1:6 -#: lh_clean.en.1:6 lh_config.en.1:6 lh.en.1:6 lh_source.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 lh_chroot.en.1:9 -#: lh_clean.en.1:11 lh_config.en.1:201 lh.en.1:11 lh_source.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary.en.1:12 lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot.en.1:12 -#: lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 lh_source.en.1:12 -#: lh_testroot.en.1:14 live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary.en.1:15 lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot.en.1:15 -#: lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 lh_source.en.1:15 -#: lh_testroot.en.1:17 live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:17 lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot.en.1:17 -#: lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 lh_source.en.1:17 -#: lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:19 lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot.en.1:19 -#: lh_clean.en.1:38 lh_config.en.1:419 lh_source.en.1:19 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary.en.1:20 lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot.en.1:20 -#: lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 lh_source.en.1:20 -#: lh_testroot.en.1:22 live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:22 lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot.en.1:22 -#: lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 lh_source.en.1:22 -#: lh_testroot.en.1:24 live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:23 lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot.en.1:23 -#: lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 lh_source.en.1:23 -#: lh_testroot.en.1:25 live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:25 lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot.en.1:25 -#: lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 lh_source.en.1:25 -#: lh_testroot.en.1:27 live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:26 lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot.en.1:26 -#: lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 lh_source.en.1:26 -#: lh_testroot.en.1:28 live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:27 lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot.en.1:27 -#: lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 lh_source.en.1:27 -#: lh_testroot.en.1:29 live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot.en.1:1 -#, no-wrap -msgid "LH_CHROOT" -msgstr "" - -# type: Plain text -#: lh_chroot.en.1:5 -msgid "lh_chroot - create the second stage by customizing the chroot" -msgstr "" - -# type: Plain text -#: lh_chroot.en.1:8 -msgid "B<lh_chroot> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_chroot.en.1:14 -msgid "" -"lh_chroot has no specific options but understands all generic live-helper " -"options. See I<live-helper>(7) for a complete list of all generic live-" -"helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_apt.en.1.pot b/manpages/po4a/pot/lh_chroot_apt.en.1.pot deleted file mode 100644 index 217f2a4a1..000000000 --- a/manpages/po4a/pot/lh_chroot_apt.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:5 -msgid "lh_chroot_apt - manage /etc/apt/apt.conf" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:8 -msgid "B<lh_chroot_apt> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:11 -msgid "" -"lh_chroot_apt is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It manages /etc/apt/apt.conf." -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:14 -msgid "" -"lh_chroot_copy has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_cache.en.1.pot b/manpages/po4a/pot/lh_chroot_cache.en.1.pot deleted file mode 100644 index 3e9edf278..000000000 --- a/manpages/po4a/pot/lh_chroot_cache.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_cache.en.1:5 -msgid "lh_chroot_cache - cache chroot stage" -msgstr "" - -# type: Plain text -#: lh_chroot_cache.en.1:8 -msgid "B<lh_chroot_cache> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_cache.en.1:11 -msgid "" -"lh_chroot_cache is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It caches the chroot stage." -msgstr "" - -# type: Plain text -#: lh_chroot_cache.en.1:14 -msgid "" -"lh_chroot_cache has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_debianchroot.en.1.pot b/manpages/po4a/pot/lh_chroot_debianchroot.en.1.pot deleted file mode 100644 index d871bb1a5..000000000 --- a/manpages/po4a/pot/lh_chroot_debianchroot.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_debianchroot.en.1:5 -msgid "lh_chroot_debianchroot - manage /etc/debian_chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_debianchroot.en.1:8 -msgid "B<lh_chroot_debianchroot> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_debianchroot.en.1:11 -msgid "" -"lh_chroot_debianchroot is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It manages /etc/debian_chroot." -msgstr "" - -# type: Plain text -#: lh_chroot_debianchroot.en.1:14 -msgid "" -"lh_chroot_debianchroot has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_devpts.en.1.pot b/manpages/po4a/pot/lh_chroot_devpts.en.1.pot deleted file mode 100644 index 5b44c92b6..000000000 --- a/manpages/po4a/pot/lh_chroot_devpts.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_devpts.en.1:5 -msgid "lh_chroot_devpts - mount /dev/pts" -msgstr "" - -# type: Plain text -#: lh_chroot_devpts.en.1:8 -msgid "B<lh_chroot_devpts> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_devpts.en.1:11 -msgid "" -"lh_chroot_devpts is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It mounts /dev/pts." -msgstr "" - -# type: Plain text -#: lh_chroot_devpts.en.1:14 -msgid "" -"lh_chroot_devpts has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_dpkg.en.1.pot b/manpages/po4a/pot/lh_chroot_dpkg.en.1.pot deleted file mode 100644 index 4970072c5..000000000 --- a/manpages/po4a/pot/lh_chroot_dpkg.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_dpkg.en.1:5 -msgid "lh_chroot_dpkg - manage /sbin/dpkg" -msgstr "" - -# type: Plain text -#: lh_chroot_dpkg.en.1:8 -msgid "B<lh_chroot_dpkg> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_dpkg.en.1:11 -msgid "" -"lh_chroot_dpkg is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It manages /sbin/dpkg." -msgstr "" - -# type: Plain text -#: lh_chroot_dpkg.en.1:14 -msgid "" -"lh_chroot_dpkg has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_hacks.en.1.pot b/manpages/po4a/pot/lh_chroot_hacks.en.1.pot deleted file mode 100644 index 1292f9cb3..000000000 --- a/manpages/po4a/pot/lh_chroot_hacks.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_hacks.en.1:5 -msgid "lh_chroot_hacks - execute hacks in chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_hacks.en.1:8 -msgid "B<lh_chroot_hacks> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_hacks.en.1:11 -msgid "" -"lh_chroot_hacks is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It executes hacks in chroot." -msgstr "" - -# type: Plain text -#: lh_chroot_hacks.en.1:14 -msgid "" -"lh_chroot_hacks has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_hooks.en.1.pot b/manpages/po4a/pot/lh_chroot_hooks.en.1.pot deleted file mode 100644 index 88523ea5a..000000000 --- a/manpages/po4a/pot/lh_chroot_hooks.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_hooks.en.1:5 -msgid "lh_chroot_hooks - execute hooks in chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_hooks.en.1:8 -msgid "B<lh_chroot_hooks> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_hooks.en.1:11 -msgid "" -"lh_chroot_hooks is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It executes hooks in chroot." -msgstr "" - -# type: Plain text -#: lh_chroot_hooks.en.1:14 -msgid "" -"lh_chroot_hooks has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_hostname.en.1.pot b/manpages/po4a/pot/lh_chroot_hostname.en.1.pot deleted file mode 100644 index b05e75956..000000000 --- a/manpages/po4a/pot/lh_chroot_hostname.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_hostname.en.1:5 -msgid "lh_chroot_hostname - manage /bin/hostname" -msgstr "" - -# type: Plain text -#: lh_chroot_hostname.en.1:8 -msgid "B<lh_chroot_hostname> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_hostname.en.1:11 -msgid "" -"lh_chroot_hostname is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It manages /bin/hostname." -msgstr "" - -# type: Plain text -#: lh_chroot_hostname.en.1:14 -msgid "" -"lh_chroot_hostname has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_hosts.en.1.pot b/manpages/po4a/pot/lh_chroot_hosts.en.1.pot deleted file mode 100644 index 13a2590e6..000000000 --- a/manpages/po4a/pot/lh_chroot_hosts.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_hosts.en.1:5 -msgid "lh_chroot_hosts - manage /etc/hosts" -msgstr "" - -# type: Plain text -#: lh_chroot_hosts.en.1:8 -msgid "B<lh_chroot_hosts> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_hosts.en.1:11 -msgid "" -"lh_chroot_hosts is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It manages /etc/hosts." -msgstr "" - -# type: Plain text -#: lh_chroot_hosts.en.1:14 -msgid "" -"lh_chroot_hosts has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_install-packages.en.1.pot b/manpages/po4a/pot/lh_chroot_install-packages.en.1.pot deleted file mode 100644 index 8dd7364b5..000000000 --- a/manpages/po4a/pot/lh_chroot_install-packages.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_install-packages.en.1:5 -msgid "lh_chroot_install-packages - install queued packages into chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_install-packages.en.1:8 -msgid "B<lh_chroot_install-packages> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_install-packages.en.1:11 -msgid "" -"lh_chroot_install-packages is a low-level command (plumbing) of live-helper, " -"the Debian Live tool suite. It installs queued packages into chroot." -msgstr "" - -# type: Plain text -#: lh_chroot_install-packages.en.1:14 -msgid "" -"lh_chroot_install-packages has no specific options but understands all " -"generic live-helper options. See I<live-helper>(7) for a complete list of " -"all generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_interactive.en.1.pot b/manpages/po4a/pot/lh_chroot_interactive.en.1.pot deleted file mode 100644 index c6371989e..000000000 --- a/manpages/po4a/pot/lh_chroot_interactive.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_interactive.en.1:5 -msgid "lh_chroot_interactive - make build interactive" -msgstr "" - -# type: Plain text -#: lh_chroot_interactive.en.1:8 -msgid "B<lh_chroot_interactive> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_interactive.en.1:11 -msgid "" -"lh_chroot_interactive is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It makes build interactive." -msgstr "" - -# type: Plain text -#: lh_chroot_interactive.en.1:14 -msgid "" -"lh_chroot_interactive has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_linux-image.en.1.pot b/manpages/po4a/pot/lh_chroot_linux-image.en.1.pot deleted file mode 100644 index 17b53e747..000000000 --- a/manpages/po4a/pot/lh_chroot_linux-image.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_linux-image.en.1:5 -msgid "lh_chroot_linux-image - manage /etc/kernel-img.conf" -msgstr "" - -# type: Plain text -#: lh_chroot_linux-image.en.1:8 -msgid "B<lh_chroot_copy> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_linux-image.en.1:11 -msgid "" -"lh_chroot_linux-image is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It manages /etc/kernel-img.conf." -msgstr "" - -# type: Plain text -#: lh_chroot_linux-image.en.1:14 -msgid "" -"lh_chroot_linux-image has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_local-hooks.en.1.pot b/manpages/po4a/pot/lh_chroot_local-hooks.en.1.pot deleted file mode 100644 index a2bcab734..000000000 --- a/manpages/po4a/pot/lh_chroot_local-hooks.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_local-hooks.en.1:5 -msgid "lh_chroot_local-hooks - execute local hooks in chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_local-hooks.en.1:8 -msgid "B<lh_chroot_local-hooks> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_local-hooks.en.1:11 -msgid "" -"lh_chroot_local-hooks is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It executes local hooks in chroot." -msgstr "" - -# type: Plain text -#: lh_chroot_local-hooks.en.1:14 -msgid "" -"lh_chroot_local-hooks has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_local-includes.en.1.pot b/manpages/po4a/pot/lh_chroot_local-includes.en.1.pot deleted file mode 100644 index 83be01889..000000000 --- a/manpages/po4a/pot/lh_chroot_local-includes.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_local-includes.en.1:5 -msgid "lh_chroot_local-includes - copy local files into chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_local-includes.en.1:8 -msgid "B<lh_chroot_local-includes> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_local-includes.en.1:11 -msgid "" -"lh_chroot_local-includes is a low-level command (plumbing) of live-helper, " -"the Debian Live tool suite. It copies local files into chroot." -msgstr "" - -# type: Plain text -#: lh_chroot_local-includes.en.1:14 -msgid "" -"lh_chroot_local-includes has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_local-packages.en.1.pot b/manpages/po4a/pot/lh_chroot_local-packages.en.1.pot deleted file mode 100644 index 95c0d3709..000000000 --- a/manpages/po4a/pot/lh_chroot_local-packages.en.1.pot +++ /dev/null @@ -1,658 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_local-packages.en.1:5 -msgid "lh_chroot_local-packages - queue install of local packages into chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_local-packages.en.1:8 -msgid "B<lh_chroot_local-packages> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_local-packages.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_chroot_local-packages.en.1:14 -msgid "" -"lh_chroot_local-packages has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_local-patches.en.1.pot b/manpages/po4a/pot/lh_chroot_local-patches.en.1.pot deleted file mode 100644 index a426e3370..000000000 --- a/manpages/po4a/pot/lh_chroot_local-patches.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_local-patches.en.1:5 -msgid "lh_chroot_local-patches - apply local patches against chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_local-patches.en.1:8 -msgid "B<lh_chroot_local-patches> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_local-patches.en.1:11 -msgid "" -"lh_chroot_local-patches is a low-level command (plumbing) of live-helper, " -"the Debian Live tool suite. It applies local patches against chroot." -msgstr "" - -# type: Plain text -#: lh_chroot_local-patches.en.1:14 -msgid "" -"lh_chroot_local-patches has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_local-preseed.en.1.pot b/manpages/po4a/pot/lh_chroot_local-preseed.en.1.pot deleted file mode 100644 index 9d9a33b13..000000000 --- a/manpages/po4a/pot/lh_chroot_local-preseed.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_local-preseed.en.1:5 -msgid "lh_chroot_local-preseed - use debconf local preseeding file" -msgstr "" - -# type: Plain text -#: lh_chroot_local-preseed.en.1:8 -msgid "B<lh_chroot_local-preseed> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_local-preseed.en.1:11 -msgid "" -"lh_chroot_local-preseed is a low-level command (plumbing) of live-helper, " -"the Debian Live tool suite. It uses debconf local preseeding files." -msgstr "" - -# type: Plain text -#: lh_chroot_local-preseed.en.1:14 -msgid "" -"lh_chroot_local-preseed has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_localization.en.1.pot b/manpages/po4a/pot/lh_chroot_localization.en.1.pot deleted file mode 100644 index 4d42c294e..000000000 --- a/manpages/po4a/pot/lh_chroot_localization.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_localization.en.1:5 -msgid "lh_chroot_localization - install localization packages into chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_localization.en.1:8 -msgid "B<lh_chroot_localization> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_localization.en.1:11 -msgid "" -"lh_chroot_localization is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It installs localization packages into chroot." -msgstr "" - -# type: Plain text -#: lh_chroot_localization.en.1:14 -msgid "" -"lh_chroot_localization has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_packages.en.1.pot b/manpages/po4a/pot/lh_chroot_packages.en.1.pot deleted file mode 100644 index b207cda85..000000000 --- a/manpages/po4a/pot/lh_chroot_packages.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_packages.en.1:5 -msgid "lh_chroot_packages - queue install of packages into chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_packages.en.1:8 -msgid "B<lh_chroot_packages> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_packages.en.1:11 -msgid "" -"lh_chroot_packages is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It queues installation of packages into chroot." -msgstr "" - -# type: Plain text -#: lh_chroot_packages.en.1:14 -msgid "" -"lh_chroot_packages has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_packageslists.en.1.pot b/manpages/po4a/pot/lh_chroot_packageslists.en.1.pot deleted file mode 100644 index caaf5474d..000000000 --- a/manpages/po4a/pot/lh_chroot_packageslists.en.1.pot +++ /dev/null @@ -1,658 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_packageslists.en.1:5 -msgid "lh_chroot_packageslists - queue install of packages lists into chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_packageslists.en.1:8 -msgid "B<lh_chroot_packageslists> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_packageslists.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_chroot_packageslists.en.1:14 -msgid "" -"lh_chroot_packageslists has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_preseed.en.1.pot b/manpages/po4a/pot/lh_chroot_preseed.en.1.pot deleted file mode 100644 index 63e5f6332..000000000 --- a/manpages/po4a/pot/lh_chroot_preseed.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_preseed.en.1:5 -msgid "lh_chroot_preseed - use debconf preseeding file" -msgstr "" - -# type: Plain text -#: lh_chroot_preseed.en.1:8 -msgid "B<lh_chroot_preseed> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_preseed.en.1:11 -msgid "" -"lh_chroot_preseed is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It uses debconf preseeding files." -msgstr "" - -# type: Plain text -#: lh_chroot_preseed.en.1:14 -msgid "" -"lh_chroot_preseed has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_proc.en.1.pot b/manpages/po4a/pot/lh_chroot_proc.en.1.pot deleted file mode 100644 index 5d83606ca..000000000 --- a/manpages/po4a/pot/lh_chroot_proc.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_proc.en.1:5 -msgid "lh_chroot_proc - mount /proc" -msgstr "" - -# type: Plain text -#: lh_chroot_proc.en.1:8 -msgid "B<lh_chroot_proc> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_proc.en.1:11 -msgid "" -"lh_chroot_proc is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It mounts /proc." -msgstr "" - -# type: Plain text -#: lh_chroot_proc.en.1:14 -msgid "" -"lh_chroot_proc has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_resolv.en.1.pot b/manpages/po4a/pot/lh_chroot_resolv.en.1.pot deleted file mode 100644 index b673bff10..000000000 --- a/manpages/po4a/pot/lh_chroot_resolv.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_resolv.en.1:5 -msgid "lh_chroot_resolv - manage /etc/resolv.conf" -msgstr "" - -# type: Plain text -#: lh_chroot_resolv.en.1:8 -msgid "B<lh_chroot_resolv> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_resolv.en.1:11 -msgid "" -"lh_chroot_resolv is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It manages /etc/resolv.conf." -msgstr "" - -# type: Plain text -#: lh_chroot_resolv.en.1:14 -msgid "" -"lh_chroot_resolv has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_selinuxfs.en.1.pot b/manpages/po4a/pot/lh_chroot_selinuxfs.en.1.pot deleted file mode 100644 index ce8f9116b..000000000 --- a/manpages/po4a/pot/lh_chroot_selinuxfs.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_selinuxfs.en.1:5 -msgid "lh_chroot_selinuxfs - mount /selinux" -msgstr "" - -# type: Plain text -#: lh_chroot_selinuxfs.en.1:8 -msgid "B<lh_chroot_selinuxfs> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_selinuxfs.en.1:11 -msgid "" -"lh_chroot_selinuxfs is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It mounts /selinux." -msgstr "" - -# type: Plain text -#: lh_chroot_selinuxfs.en.1:14 -msgid "" -"lh_chroot_selinuxfs has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_sources.en.1.pot b/manpages/po4a/pot/lh_chroot_sources.en.1.pot deleted file mode 100644 index 80544b2f4..000000000 --- a/manpages/po4a/pot/lh_chroot_sources.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_sources.en.1:5 -msgid "lh_chroot_sources - manage /etc/apt/sources.list" -msgstr "" - -# type: Plain text -#: lh_chroot_sources.en.1:8 -msgid "B<lh_chroot_sources> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_sources.en.1:11 -msgid "" -"lh_chroot_sources is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It manages /etc/apt/sources.list." -msgstr "" - -# type: Plain text -#: lh_chroot_sources.en.1:14 -msgid "" -"lh_chroot_sources has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_symlinks.en.1.pot b/manpages/po4a/pot/lh_chroot_symlinks.en.1.pot deleted file mode 100644 index b042497d6..000000000 --- a/manpages/po4a/pot/lh_chroot_symlinks.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_symlinks.en.1:5 -msgid "lh_chroot_symlinks - convert symlinks." -msgstr "" - -# type: Plain text -#: lh_chroot_symlinks.en.1:8 -msgid "B<lh_chroot_symlinks> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_symlinks.en.1:11 -msgid "" -"lh_chroot_symlinks is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It converts symlinks." -msgstr "" - -# type: Plain text -#: lh_chroot_symlinks.en.1:14 -msgid "" -"lh_chroot_symlinks has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_sysfs.en.1.pot b/manpages/po4a/pot/lh_chroot_sysfs.en.1.pot deleted file mode 100644 index c29be3a16..000000000 --- a/manpages/po4a/pot/lh_chroot_sysfs.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_sysfs.en.1:5 -msgid "lh_chroot_sysfs - mount /sys" -msgstr "" - -# type: Plain text -#: lh_chroot_sysfs.en.1:8 -msgid "B<lh_chroot_sysfs> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_sysfs.en.1:11 -msgid "" -"lh_chroot_sysfs is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It mounts /sys." -msgstr "" - -# type: Plain text -#: lh_chroot_sysfs.en.1:14 -msgid "" -"lh_chroot_sysfs has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_sysv-rc.en.1.pot b/manpages/po4a/pot/lh_chroot_sysv-rc.en.1.pot deleted file mode 100644 index 3a03686c8..000000000 --- a/manpages/po4a/pot/lh_chroot_sysv-rc.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_sysv-rc.en.1:5 -msgid "lh_chroot_sysvrc - manage /usr/sbin/policy-rc.d" -msgstr "" - -# type: Plain text -#: lh_chroot_sysv-rc.en.1:8 -msgid "B<lh_chroot_sysvrc> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_sysv-rc.en.1:11 -msgid "" -"lh_chroot_sysvrc is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It manages /usr/sbin/policy-rc.d." -msgstr "" - -# type: Plain text -#: lh_chroot_sysv-rc.en.1:14 -msgid "" -"lh_chroot_sysvrc has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_sysvinit.en.1.pot b/manpages/po4a/pot/lh_chroot_sysvinit.en.1.pot deleted file mode 100644 index 01a8f4154..000000000 --- a/manpages/po4a/pot/lh_chroot_sysvinit.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_sysvinit.en.1:5 -msgid "lh_chroot_sysvinit - configure sysvinit" -msgstr "" - -# type: Plain text -#: lh_chroot_sysvinit.en.1:8 -msgid "B<lh_chroot_sysvinit> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_sysvinit.en.1:11 -msgid "" -"lh_chroot_sysvinit is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It configures sysvinit." -msgstr "" - -# type: Plain text -#: lh_chroot_sysvinit.en.1:14 -msgid "" -"lh_chroot_sysvinit has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_chroot_tasks.en.1.pot b/manpages/po4a/pot/lh_chroot_tasks.en.1.pot deleted file mode 100644 index 1c02a690e..000000000 --- a/manpages/po4a/pot/lh_chroot_tasks.en.1.pot +++ /dev/null @@ -1,657 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot_hacks.en.1:1 -#: lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 lh_chroot_hosts.en.1:1 -#: lh_chroot_install-packages.en.1:1 lh_chroot_interactive.en.1:1 -#: lh_chroot_linux-image.en.1:1 lh_chroot_local-hooks.en.1:1 -#: lh_chroot_local-includes.en.1:1 lh_chroot_localization.en.1:1 -#: lh_chroot_local-packages.en.1:1 lh_chroot_local-patches.en.1:1 -#: lh_chroot_local-preseed.en.1:1 lh_chroot_packages.en.1:1 -#: lh_chroot_packageslists.en.1:1 lh_chroot_preseed.en.1:1 -#: lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 lh_chroot_selinuxfs.en.1:1 -#: lh_chroot_sources.en.1:1 lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 -#: lh_chroot_sysvinit.en.1:1 lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 -#, no-wrap -msgid "LH_CHROOT_COPY" -msgstr "" - -# type: Plain text -#: lh_chroot_apt.en.1:17 lh_chroot_cache.en.1:17 -#: lh_chroot_debianchroot.en.1:17 lh_chroot_devpts.en.1:17 -#: lh_chroot_dpkg.en.1:17 lh_chroot_hacks.en.1:17 lh_chroot_hooks.en.1:17 -#: lh_chroot_hostname.en.1:17 lh_chroot_hosts.en.1:17 -#: lh_chroot_install-packages.en.1:17 lh_chroot_interactive.en.1:17 -#: lh_chroot_linux-image.en.1:17 lh_chroot_local-hooks.en.1:17 -#: lh_chroot_local-includes.en.1:17 lh_chroot_localization.en.1:17 -#: lh_chroot_local-packages.en.1:17 lh_chroot_local-patches.en.1:17 -#: lh_chroot_local-preseed.en.1:17 lh_chroot_packages.en.1:17 -#: lh_chroot_packageslists.en.1:17 lh_chroot_preseed.en.1:17 -#: lh_chroot_proc.en.1:17 lh_chroot_resolv.en.1:17 lh_chroot_selinuxfs.en.1:17 -#: lh_chroot_sources.en.1:17 lh_chroot_symlinks.en.1:17 -#: lh_chroot_sysfs.en.1:17 lh_chroot_sysvinit.en.1:17 -#: lh_chroot_sysv-rc.en.1:17 lh_chroot_tasks.en.1:17 -msgid "I<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: lh_chroot_tasks.en.1:5 -msgid "lh_chroot_tasks - install tasks into chroot" -msgstr "" - -# type: Plain text -#: lh_chroot_tasks.en.1:8 -msgid "B<lh_chroot_tasks> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_chroot_tasks.en.1:11 -msgid "" -"lh_chroot_tasks is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It installs tasks into chroot." -msgstr "" - -# type: Plain text -#: lh_chroot_tasks.en.1:14 -msgid "" -"lh_chroot_tasks has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_clean.en.1.pot b/manpages/po4a/pot/lh_clean.en.1.pot deleted file mode 100644 index 79472e39a..000000000 --- a/manpages/po4a/pot/lh_clean.en.1.pot +++ /dev/null @@ -1,278 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:42+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 lh_chroot.en.1:3 -#: lh_clean.en.1:3 lh_config.en.1:3 lh.en.1:3 lh_source.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 lh_chroot.en.1:6 -#: lh_clean.en.1:6 lh_config.en.1:6 lh.en.1:6 lh_source.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 lh_chroot.en.1:9 -#: lh_clean.en.1:11 lh_config.en.1:201 lh.en.1:11 lh_source.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary.en.1:12 lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot.en.1:12 -#: lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 lh_source.en.1:12 -#: lh_testroot.en.1:14 live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary.en.1:15 lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot.en.1:15 -#: lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 lh_source.en.1:15 -#: lh_testroot.en.1:17 live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:17 lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot.en.1:17 -#: lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 lh_source.en.1:17 -#: lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:19 lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot.en.1:19 -#: lh_clean.en.1:38 lh_config.en.1:419 lh_source.en.1:19 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary.en.1:20 lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot.en.1:20 -#: lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 lh_source.en.1:20 -#: lh_testroot.en.1:22 live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:22 lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot.en.1:22 -#: lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 lh_source.en.1:22 -#: lh_testroot.en.1:24 live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:23 lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot.en.1:23 -#: lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 lh_source.en.1:23 -#: lh_testroot.en.1:25 live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:25 lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot.en.1:25 -#: lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 lh_source.en.1:25 -#: lh_testroot.en.1:27 live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:26 lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot.en.1:26 -#: lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 lh_source.en.1:26 -#: lh_testroot.en.1:28 live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:27 lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot.en.1:27 -#: lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 lh_source.en.1:27 -#: lh_testroot.en.1:29 live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_clean.en.1:1 -#, no-wrap -msgid "LH_CLEAN" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:5 -msgid "lh_clean - clean up system build directories" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:8 -msgid "" -"B<lh_clean> [I<live-helper\\ options>\\] [B<--all>] [B<--cache>] [B<--" -"chroot>] [B<--binary>] [B<--purge>] [B<--remove>] [B<--stage>] [B<--source>]" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:10 -msgid "B<lh_clean> [I<live-helper\\ options>]" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:13 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_clean.en.1:16 -msgid "" -"In addition to its specific options, lh_clean also understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" - -# type: IP -#: lh_clean.en.1:17 -#, no-wrap -msgid "B<--all>" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:19 -msgid "" -"removes chroot, binary, stage, and source, cache is kept. This is the " -"default operation and will be processed if no argument is given." -msgstr "" - -# type: IP -#: lh_clean.en.1:19 -#, no-wrap -msgid "B<--cache>" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:21 -msgid "removes all cache directories." -msgstr "" - -# type: IP -#: lh_clean.en.1:21 -#, no-wrap -msgid "B<--chroot>" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:23 -msgid "unmounts and removes the chroot directory." -msgstr "" - -# type: IP -#: lh_clean.en.1:23 -#, no-wrap -msgid "B<--binary>" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:25 -msgid "removes all binary related caches, directories, and stages files." -msgstr "" - -# type: IP -#: lh_clean.en.1:25 -#, no-wrap -msgid "B<--purge>" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:27 -msgid "removes everything (including cache). The config directory is kept." -msgstr "" - -# type: IP -#: lh_clean.en.1:27 -#, no-wrap -msgid "B<--remove>" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:29 -msgid "" -"removes everything (including package cache, but not stage cache). The " -"config directory is kept." -msgstr "" - -# type: IP -#: lh_clean.en.1:29 -#, no-wrap -msgid "B<--stage>" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:31 -msgid "removes all stage files." -msgstr "" - -# type: IP -#: lh_clean.en.1:31 -#, no-wrap -msgid "B<--source>" -msgstr "" - -# type: Plain text -#: lh_clean.en.1:33 -msgid "removes all source related caches, directories, and stage files." -msgstr "" diff --git a/manpages/po4a/pot/lh_config.en.1.pot b/manpages/po4a/pot/lh_config.en.1.pot deleted file mode 100644 index 035afef14..000000000 --- a/manpages/po4a/pot/lh_config.en.1.pot +++ /dev/null @@ -1,2056 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:42+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 lh_chroot.en.1:3 -#: lh_clean.en.1:3 lh_config.en.1:3 lh.en.1:3 lh_source.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 lh_chroot.en.1:6 -#: lh_clean.en.1:6 lh_config.en.1:6 lh.en.1:6 lh_source.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 lh_chroot.en.1:9 -#: lh_clean.en.1:11 lh_config.en.1:201 lh.en.1:11 lh_source.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary.en.1:12 lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot.en.1:12 -#: lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 lh_source.en.1:12 -#: lh_testroot.en.1:14 live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary.en.1:15 lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot.en.1:15 -#: lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 lh_source.en.1:15 -#: lh_testroot.en.1:17 live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:17 lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot.en.1:17 -#: lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 lh_source.en.1:17 -#: lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:19 lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot.en.1:19 -#: lh_clean.en.1:38 lh_config.en.1:419 lh_source.en.1:19 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary.en.1:20 lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot.en.1:20 -#: lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 lh_source.en.1:20 -#: lh_testroot.en.1:22 live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:22 lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot.en.1:22 -#: lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 lh_source.en.1:22 -#: lh_testroot.en.1:24 live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:23 lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot.en.1:23 -#: lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 lh_source.en.1:23 -#: lh_testroot.en.1:25 live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:25 lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot.en.1:25 -#: lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 lh_source.en.1:25 -#: lh_testroot.en.1:27 live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:26 lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot.en.1:26 -#: lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 lh_source.en.1:26 -#: lh_testroot.en.1:28 live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:27 lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot.en.1:27 -#: lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 lh_source.en.1:27 -#: lh_testroot.en.1:29 live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_config.en.1:1 -#, no-wrap -msgid "LH_CONFIG" -msgstr "" - -# type: Plain text -#: lh_config.en.1:5 -msgid "lh_config - create configuration for live-helper" -msgstr "" - -# type: Plain text -#: lh_config.en.1:8 -msgid "B<lh_config>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:10 -msgid " [B<--apt> apt|aptitude]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:12 -msgid " [B<--apt-ftp-proxy> I<URL>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:14 -msgid " [B<--apt-http-proxy> I<URL>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:16 -msgid " [B<--apt-pdiffs> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:18 -msgid " [B<--apt-options> I<OPTION>|\"I<OPTIONS>\"]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:20 -msgid " [B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\"]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:22 -msgid " [B<--apt-pipeline> I<FIXME>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:24 -msgid " [B<--apt-recommends> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:26 -msgid " [B<--apt-secure> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:28 -msgid " [-a|B<--architecture> I<ARCHITECTURE>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:30 -msgid " [-b|B<--binary-images> iso|net|tar|usb-hdd]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:32 -msgid " [B<--binary-filesystem> fat16|fat32|ext2]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:34 -msgid " [B<--binary-indices> enabled|disabled|none]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:36 -msgid " [B<--bootappend-install> I<PARAMETER>|I<\"PARAMETERS\">]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:38 -msgid " [B<--bootappend-live> I<PARAMETER>|I<\"PARAMETERS\">]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:40 -msgid " [B<--bootloader> grub|syslinux|yaboot]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:42 -msgid " [B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:44 -msgid " [B<--bootstrap-config> I<FILE>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:46 -msgid " [-f|B<--bootstrap-flavour> minimal|standard]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:48 -msgid " [B<--bootstrap-keyring> I<PACKAGE>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:50 -msgid " [B<--cache> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:52 -msgid " [B<--cache-indices> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:54 -msgid " [B<--cache-packages> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:56 -msgid " [B<--cache-stages> I<STAGE>|I<\"STAGES\">]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:58 -msgid " [B<--checksums> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:60 -msgid " [B<--chroot-build> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:62 -msgid " [B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:64 -msgid " [B<--clean]>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:66 -msgid "B<\t[-c|--conffile> I<FILE>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:68 -msgid " [B<--debconf-frontend> dialog|editor|noninteractive|readline]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:70 -msgid " [B<--debconf-nowarnings> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:72 -msgid " [B<--debconf-priority> low|medium|high|critical]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:74 -msgid "" -" [B<--debian-installer> enabled|cdrom|netinst|netboot|businesscard|live|" -"disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:76 -msgid " [B<--debian-installer-distribution> daily|I<CODENAME>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:78 -msgid " [B<--debian-installer-preseedfile> I<FILE>|I<URL>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:80 -msgid " [-d|B<--distribution> I<CODENAME>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:82 -msgid " [--B<dump>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:84 -msgid " [-e|B<--encryption> disabled|aes128|aes192|aes256]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:86 -msgid " [B<--fdisk> fdisk|fdisk.dist]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:88 -msgid " [B<--genisoimage> genisomage|mkisofs]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:90 -msgid " [B<--grub-splash> I<FILE>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:92 -msgid " [B<--hooks> I<FILE>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:94 -msgid " [B<--hostname> I<NAME>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:96 -msgid " [B<--ignore-system-defaults>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:98 -msgid " [B<--includes> I<PATH>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:100 -msgid " [B<--initramfs> auto|live-initramfs|casper]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:102 -msgid " [B<--interactive> shell]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:104 -msgid " [B<--iso-application> I<NAME>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:106 -msgid " [B<--iso-preparer> I<NAME>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:108 -msgid " [B<--iso-publisher> I<NAME>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:110 -msgid " [B<--iso-volume> I<NAME>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:112 -msgid " [B<--jffs2-eraseblock> I<SIZE>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:114 -msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:116 -msgid " [-l|B<--language> I<LANGUAGE>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:118 -msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:120 -msgid " [B<--linux-packages> I<\"PACKAGES\">]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:122 -msgid " [B<--losetup> losetup|losetup.orig]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:124 -msgid " [B<--memtest> memtest86+|memtest86|none]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:126 -msgid " [-m|B<--mirror-bootstrap> I<URL>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:128 -msgid " [B<--mirror-binary> I<URL>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:130 -msgid " [B<--mirror-binary-security> I<URL>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:132 -msgid " [B<--mirror-chroot> I<URL>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:134 -msgid " [B<--mirror-chroot-security> I<URL>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:136 -msgid " [B<--mode> debian|emdebian]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:138 -msgid " [B<--net-root-filesystem> nfs|cfs]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:140 -msgid " [B<--net-root-mountoptions> I<OPTIONS>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:142 -msgid " [B<--net-root-path> I<PATH>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:144 -msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:146 -msgid " [B<--net-cow-filesystem> nfs|cfs]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:148 -msgid " [B<--net-cow-mountoptions> I<OPTIONS>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:150 -msgid " [B<--net-cow-path> I<PATH>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:152 -msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:154 -msgid " [B<--net-tarball> bzip2|gzip|tar|none]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:156 -msgid " [-p|B<--packages-lists> I<FILE>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:158 -msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:160 -msgid " [B<--root-command> sudo]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:162 -msgid " [B<--use-fakeroot> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:164 -msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:166 -msgid " [B<--security> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:168 -msgid " [B<--source> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:170 -msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:172 -msgid " [B<--symlinks> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:174 -msgid " [B<--syslinux-splash> I<FILE>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:176 -msgid " [B<--syslinux-timeout> I<SECONDS>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:178 -msgid " [B<--syslinux-menu> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:180 -msgid " [B<--sysvinit> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:182 -msgid " [B<--tasksel> aptitude|tasksel]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:184 -msgid " [B<--tasks> I<TASK>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:186 -msgid " [B<--templates> I<PATH>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:188 -msgid " [B<--union-filesystem> aufs|unionfs]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:190 -msgid " [B<--virtual-root-filesystem> ext3]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:192 -msgid " [B<--virtual-root-size >I<MB>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:194 -msgid " [B<--exposed-root> enabled|disabled]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:196 -msgid " [B<--username> I<NAME>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:198 -msgid " [B<--win32-loader enabled|disabled]>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:200 -msgid "B<lh_config> [I<live-helper\\ options>]" -msgstr "" - -# type: Plain text -#: lh_config.en.1:203 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_config.en.1:205 -msgid "" -"B<Attention:> 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." -msgstr "" - -# type: Plain text -#: lh_config.en.1:208 -msgid "" -"In addition to its specific options, lh_config also understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" - -# type: IP -#: lh_config.en.1:209 -#, no-wrap -msgid "B<--apt> apt|aptitude" -msgstr "" - -# type: Plain text -#: lh_config.en.1:211 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:211 -#, no-wrap -msgid "B<--apt-ftp-proxy> I<URL>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:213 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:213 -#, no-wrap -msgid "B<--apt-http-proxy> I<URL>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:215 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:215 -#, no-wrap -msgid "B<--apt-pdiffs> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:217 -msgid "" -"defines whetever apt should use incremental package indices feature or not. " -"This is enabled by default." -msgstr "" - -# type: IP -#: lh_config.en.1:217 -#, no-wrap -msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:219 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:219 -#, no-wrap -msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\"" -msgstr "" - -# type: Plain text -#: lh_config.en.1:221 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:221 -#, no-wrap -msgid "B<--apt-pipeline> I<FIXME>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:223 lh_config.en.1:313 lh_config.en.1:370 lh_config.en.1:402 -msgid "FIXME" -msgstr "" - -# type: IP -#: lh_config.en.1:223 -#, no-wrap -msgid "B<--apt-recommends> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:225 -msgid "" -"defines if apt should install recommended packages automatically. By " -"default, this is enable in the debian mode and disabled in emdebian mode." -msgstr "" - -# type: IP -#: lh_config.en.1:225 -#, no-wrap -msgid "B<--apt-secure> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:227 -msgid "" -"defines if apt should check repository signatures. This is enabled by " -"default." -msgstr "" - -# type: IP -#: lh_config.en.1:227 -#, no-wrap -msgid "-a|B<--architecture> I<ARCHITECTURE>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:229 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:229 -#, no-wrap -msgid "-b|B<--binary-images> iso|net|tar|usb-hdd" -msgstr "" - -# type: Plain text -#: lh_config.en.1:231 -msgid "" -"defines the image type to build. By default this is set to iso to build CD/" -"DVD images." -msgstr "" - -# type: IP -#: lh_config.en.1:231 -#, no-wrap -msgid "B<--binary-filesystem> fat16|fat32|ext2" -msgstr "" - -# type: Plain text -#: lh_config.en.1:233 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:233 -#, no-wrap -msgid "B<--binary-indices> enabled|disabled|none" -msgstr "" - -# type: Plain text -#: lh_config.en.1:235 -msgid "" -"defines if the resulting images should have binary indices or not and " -"defaults to enabled. If set to none, no indices are included at all." -msgstr "" - -# type: IP -#: lh_config.en.1:235 -#, no-wrap -msgid "B<--bootappend-install> I<PARAMETER>|I<\"PARAMETERS\">" -msgstr "" - -# type: Plain text -#: lh_config.en.1:237 -msgid "sets boot parameters specific to debian-installer, if included." -msgstr "" - -# type: IP -#: lh_config.en.1:237 -#, no-wrap -msgid "B<--bootappend-live> I<PARAMETER>|I<\"PARAMETERS\">" -msgstr "" - -# type: Plain text -#: lh_config.en.1:239 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:239 -#, no-wrap -msgid "B<--bootloader> grub|syslinux|yaboot" -msgstr "" - -# type: Plain text -#: lh_config.en.1:241 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:241 -#, no-wrap -msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy" -msgstr "" - -# type: Plain text -#: lh_config.en.1:243 -msgid "" -"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 usefull 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." -msgstr "" - -# type: IP -#: lh_config.en.1:243 -#, no-wrap -msgid "B<--bootstrap-config> I<FILE>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:245 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:245 -#, no-wrap -msgid "-f|B<--bootstrap-flavour> minimal|standard" -msgstr "" - -# type: Plain text -#: lh_config.en.1:247 -msgid "" -"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)." -msgstr "" - -# type: IP -#: lh_config.en.1:247 -#, no-wrap -msgid "B<--bootstrap-keyring> I<PACKAGE>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:249 -msgid "" -"sets the archive keyring package to be used. Default is debian-archive-" -"keyring." -msgstr "" - -# type: IP -#: lh_config.en.1:249 -#, no-wrap -msgid "B<--cache> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:251 -msgid "" -"defines globally if any cache should be used at all. Different caches can be " -"controled through the their own options." -msgstr "" - -# type: IP -#: lh_config.en.1:251 -#, no-wrap -msgid "B<--cache-indices> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:253 -msgid "" -"defines if downloaded package indices and lists should be cached which is " -"disabled by default. Enabling it would allow to rebuild an image completely " -"offline, however, you would not get updates anymore then." -msgstr "" - -# type: IP -#: lh_config.en.1:253 -#, no-wrap -msgid "B<--cache-packages> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:255 -msgid "" -"defines if downloaded packages files should be cached which is enabled 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 enabled, 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." -msgstr "" - -# type: IP -#: lh_config.en.1:255 -#, no-wrap -msgid "B<--cache-stages> enabled|disabled|I<STAGE>|I<\"STAGES\">" -msgstr "" - -# type: Plain text -#: lh_config.en.1:257 -msgid "" -"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 usefull during development if you want to rebuild the binary stage " -"but not regenerate the root filesystem all the time." -msgstr "" - -# type: IP -#: lh_config.en.1:257 -#, no-wrap -msgid "B<--checksums> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:259 -msgid "" -"defines if the binary image should contain a file called md5sums.txt that " -"lists all files on the image together with their md5 checksums. This in turn " -"can be used by live-initramfs' built-in integrity-check to verify the medium " -"if specified at boot prompt. In general, this should not be disabled 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." -msgstr "" - -# type: IP -#: lh_config.en.1:259 -#, no-wrap -msgid "B<--chroot-build> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:261 -msgid "" -"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 B<exactely> match what is present at build-time in " -"the target distribution. Never do disable this option unless you are " -"B<exactely> sure what you are doing and have B<completely>I< understood its " -"consequences.>" -msgstr "" - -# type: IP -#: lh_config.en.1:261 -#, no-wrap -msgid "B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2" -msgstr "" - -# type: Plain text -#: lh_config.en.1:263 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:263 -#, no-wrap -msgid "B<--clean>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:265 -msgid "" -"minimizes config directory by automatically removing unused and thus empty " -"subdirectories." -msgstr "" - -# type: IP -#: lh_config.en.1:265 -#, no-wrap -msgid "-c|B<--conffile> I<FILE>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:267 -msgid "" -"using a user specified alternative configuration file in addition to the " -"normally used one in the config directory." -msgstr "" - -# type: IP -#: lh_config.en.1:267 -#, no-wrap -msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline" -msgstr "" - -# type: Plain text -#: lh_config.en.1:269 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:269 -#, no-wrap -msgid "B<--debconf-nowarnings> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:271 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:271 -#, no-wrap -msgid "B<--debconf-priority> low|medium|high|critical" -msgstr "" - -# type: Plain text -#: lh_config.en.1:273 -msgid "" -"defines what value the debconf priority shoul dbe set to inside the chroot. " -"By default, it is set to critical, which means that almost none questions " -"are displayed. Note that this only has an effect if you use any debconf " -"frontend different from noninteractive." -msgstr "" - -# type: IP -#: lh_config.en.1:273 -#, no-wrap -msgid "B<--debian-installer> enabled|cdrom|netinst|netboot|businesscard|live|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:275 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:275 -#, no-wrap -msgid "B<--debian-installer-distribution> daily|I<CODENAME>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:277 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:277 -#, no-wrap -msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:279 -msgid "" -"sets the filename or URL for an optionally used and included preseeding file " -"for debian-installer." -msgstr "" - -# type: IP -#: lh_config.en.1:279 -#, no-wrap -msgid "-d|B<--distribution> I<CODENAME>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:281 -msgid "defines the distribution of the resulting live system." -msgstr "" - -# type: IP -#: lh_config.en.1:281 -#, no-wrap -msgid "--B<dump>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:283 -msgid "" -"prepares a report of the currently present live system configuration and the " -"version of live-helper used. This is usefull to provide if you submit bug " -"reports, we do get all informations required for us to locate and replicate " -"an error." -msgstr "" - -# type: IP -#: lh_config.en.1:283 -#, no-wrap -msgid "-e|B<--encryption> disabled|aes128|aes192|aes256" -msgstr "" - -# type: Plain text -#: lh_config.en.1:285 -msgid "" -"defines if the root filesystem should be encrypted or not. By default, this " -"is disabled." -msgstr "" - -# type: IP -#: lh_config.en.1:285 -#, no-wrap -msgid "B<--fdisk> fdisk|fdisk.dist" -msgstr "" - -# type: Plain text -#: lh_config.en.1:287 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:287 -#, no-wrap -msgid "B<--genisoimage> genisomage|mkisofs" -msgstr "" - -# type: Plain text -#: lh_config.en.1:289 -msgid "" -"sets the filename of the genisoimage binary from the host system that should " -"be used. This is autodetected and does generally not need any customization." -msgstr "" - -# type: IP -#: lh_config.en.1:289 -#, no-wrap -msgid "B<--grub-splash> I<FILE>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:291 -msgid "" -"defines the name of an optional to be included splash screen graphic for the " -"grub bootloader." -msgstr "" - -# type: IP -#: lh_config.en.1:291 -#, no-wrap -msgid "B<--hooks> I<FILE>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:293 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:293 -#, no-wrap -msgid "B<--hostname> I<NAME>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:295 -msgid "sets the hostname of the live system." -msgstr "" - -# type: IP -#: lh_config.en.1:295 -#, no-wrap -msgid "B<--ignore-system-defaults>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:297 -msgid "" -"lh_config by default reads system defaults from /etc/default/live-helper " -"when generating a new live system config directory. This is usefull if you " -"want to set global settings, such as mirror locations, and don't want to " -"specify them all of the time." -msgstr "" - -# type: IP -#: lh_config.en.1:297 -#, no-wrap -msgid "B<--includes> I<PATH>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:299 -msgid "" -"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/." -msgstr "" - -# type: IP -#: lh_config.en.1:299 -#, no-wrap -msgid "B<--initramfs> auto|live-initramfs|casper" -msgstr "" - -# type: Plain text -#: lh_config.en.1:301 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:301 -#, no-wrap -msgid "B<--interactive> shell" -msgstr "" - -# type: Plain text -#: lh_config.en.1:303 -msgid "" -"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 disabled." -msgstr "" - -# type: IP -#: lh_config.en.1:303 -#, no-wrap -msgid "B<--iso-application> I<NAME>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:305 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:305 -#, no-wrap -msgid "B<--iso-preparer> I<NAME>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:307 -msgid "" -"sets the PREPARER field in the header of a resulting CD/DVD image. By " -"default this is set to \"live-helper I<VERSION>; http://packages.qa.debian." -"org/live-helper\", whereas VERSION is exanded to the version of live-helper " -"that was used to build the image." -msgstr "" - -# type: IP -#: lh_config.en.1:307 -#, no-wrap -msgid "B<--iso-publisher> I<NAME>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:309 -msgid "" -"sets the PUBLISHED field in the header of a resulting CD/DVD image. By " -"default, this is set to 'Debian Live project; http://debian-live.alioth." -"debian.org/; debian-live@lists.debian.org'. Remember to change this to the " -"appropriate values at latest when you distributing custom and unofficial " -"images." -msgstr "" - -# type: IP -#: lh_config.en.1:309 -#, no-wrap -msgid "B<--iso-volume> I<NAME>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:311 -msgid "" -"sets the VOLUME field in the header of a resulting CD/DVD and defaults to " -"'Debian Live (I<DATE>)' in debian mode, and 'Emdebian Live (I<DATE>)' in " -"emdebian mode, whereas DATE is expanded with the current date and time of " -"the generation." -msgstr "" - -# type: IP -#: lh_config.en.1:311 -#, no-wrap -msgid "B<--jffs2-eraseblock> I<SIZE>" -msgstr "" - -# type: IP -#: lh_config.en.1:313 -#, no-wrap -msgid "[B<--keyring-packages> I<PACKAGE|\"PACKAGES>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:315 -msgid "" -"sets the keyring package or additional keyring packages. By default this is " -"set to debian-archive-keyring." -msgstr "" - -# type: IP -#: lh_config.en.1:315 -#, no-wrap -msgid "-l|B<--language> I<LANGUAGE>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:317 -msgid "" -"sets the language of a live system by installing l10n related packages and " -"enables generation of the correct locales through automatically setting the " -"right boot parameters." -msgstr "" - -# type: IP -#: lh_config.en.1:317 -#, no-wrap -msgid "-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:319 -msgid "" -"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 bootet." -msgstr "" - -# type: IP -#: lh_config.en.1:319 -#, no-wrap -msgid "B<--linux-packages> I<\"PACKAGES>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:321 -msgid "" -"sets the internal name of the kernel packges naming scheme. If you use " -"debian kernel packges, 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 I<STUB>-I<FLAVOUR> 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." -msgstr "" - -# type: IP -#: lh_config.en.1:321 -#, no-wrap -msgid "B<--losetup> losetup|losetup.orig" -msgstr "" - -# type: Plain text -#: lh_config.en.1:323 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:323 -#, no-wrap -msgid "B<--memtest> memtest86+|memtest86|none" -msgstr "" - -# type: Plain text -#: lh_config.en.1:325 -msgid "" -"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+." -msgstr "" - -# type: IP -#: lh_config.en.1:325 -#, no-wrap -msgid "-m|B<--mirror-bootstrap> I<URL>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:327 -msgid "" -"sets the location of the debian package mirror that should be used to " -"bootstrap from." -msgstr "" - -# type: IP -#: lh_config.en.1:327 -#, no-wrap -msgid "B<--mirror-binary> I<URL>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:329 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:329 -#, no-wrap -msgid "B<--mirror-binary-security> I<URL>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:331 -msgid "" -"sets the location of the debian security package mirror that should end up " -"configuered in the final image. By default, the same value that is used for " -"--mirror-chroot-security is used here unless specified different." -msgstr "" - -# type: IP -#: lh_config.en.1:331 -#, no-wrap -msgid "B<--mirror-chroot> I<URL>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:333 -msgid "" -"sets the location of the debian package mirror that will be used to fetch " -"the packages in order to build the live system. By default, this points to " -"http://ftp.us.debian.org/debian/ which may not be a good default if you live " -"outside the U.S." -msgstr "" - -# type: IP -#: lh_config.en.1:333 -#, no-wrap -msgid "B<--mirror-chroot-security> I<URL>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:335 -msgid "" -"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/." -msgstr "" - -# type: IP -#: lh_config.en.1:335 -#, no-wrap -msgid "B<--mode> debian|emdebian" -msgstr "" - -# type: Plain text -#: lh_config.en.1:337 -msgid "" -"defines a global mode to load project specific defaults. By default this is " -"set to debian." -msgstr "" - -# type: IP -#: lh_config.en.1:337 -#, no-wrap -msgid "B<--net-root-filesystem> nfs|cfs" -msgstr "" - -# type: Plain text -#: lh_config.en.1:339 -msgid "" -"defines the filesystem that will be configured in the bootloader " -"configuration for your netboot image. This defaults to nfs." -msgstr "" - -# type: IP -#: lh_config.en.1:339 -#, no-wrap -msgid "B<--net-root-mountoptions> I<OPTIONS>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:341 -msgid "" -"sets additional options for mounting the root filesystem in netboot images " -"and is by default empty." -msgstr "" - -# type: IP -#: lh_config.en.1:341 -#, no-wrap -msgid "B<--net-root-path> I<PATH>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:343 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:343 -#, no-wrap -msgid "B<--net-root-server> I<IP>|I<HOSTNAME>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:345 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:345 -#, no-wrap -msgid "B<--net-cow-filesystem> nfs|cfs" -msgstr "" - -# type: Plain text -#: lh_config.en.1:347 -msgid "" -"defines the filesystem type for the copy-on-write layer and defaults to nfs." -msgstr "" - -# type: IP -#: lh_config.en.1:347 -#, no-wrap -msgid "B<--net-cow-mountoptions> I<OPTIONS>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:349 -msgid "" -"sets additional options for mounting the copy-on-write layer in netboot " -"images and is by default empty." -msgstr "" - -# type: IP -#: lh_config.en.1:349 -#, no-wrap -msgid "B<--net-cow-path> I<PATH>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:351 -msgid "" -"defines the path to client writable filesystem. Anywhere that " -"I<client_mac_address> is specified in the path live-initramfs will " -"substitute the MAC address of the client delimited with hyphens." -msgstr "" - -# type: Plain text -#: lh_config.en.1:354 -msgid "Example:" -msgstr "" - -# type: Plain text -#: lh_config.en.1:356 -msgid "/export/hosts/client_mac_address" -msgstr "" - -# type: Plain text -#: lh_config.en.1:358 -msgid "/export/hosts/00-16-D3-33-92-E8" -msgstr "" - -# type: IP -#: lh_config.en.1:358 -#, no-wrap -msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:360 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:360 -#, no-wrap -msgid "B<--net-tarball> bzip2|gzip|tar|none" -msgstr "" - -# type: Plain text -#: lh_config.en.1:362 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:362 -#, no-wrap -msgid "-p|B<--packages-lists> I<FILE>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:364 -msgid "" -"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 also need to list them here. Putting them into config/" -"chroot_local-packageslists is not enough." -msgstr "" - -# type: IP -#: lh_config.en.1:364 -#, no-wrap -msgid "B<--packages> I<PACKAGE>|I<\"PACKAGES\">" -msgstr "" - -# type: Plain text -#: lh_config.en.1:366 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:366 -#, no-wrap -msgid "B<--root-command> sudo" -msgstr "" - -# type: Plain text -#: lh_config.en.1:368 -msgid "" -"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 relaying on " -"sudo, call the individual live-helper command with sudo itself." -msgstr "" - -# type: IP -#: lh_config.en.1:368 -#, no-wrap -msgid "B<--use-fakeroot> enabled|disabled" -msgstr "" - -# type: IP -#: lh_config.en.1:370 -#, no-wrap -msgid "B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">" -msgstr "" - -# type: Plain text -#: lh_config.en.1:372 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:372 -#, no-wrap -msgid "B<--security> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:374 -msgid "" -"defines if the security repositories specified in the security mirror " -"options should be used or not." -msgstr "" - -# type: IP -#: lh_config.en.1:374 -#, no-wrap -msgid "B<--source> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:376 -msgid "" -"defines if a corresponding source image to the binary image should be build. " -"By default this is disabled 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." -msgstr "" - -# type: IP -#: lh_config.en.1:376 -#, no-wrap -msgid "-s|B<--source-images> iso|net|tar|usb-hdd" -msgstr "" - -# type: Plain text -#: lh_config.en.1:378 -msgid "defines the image type for the source image. Default is tar." -msgstr "" - -# type: IP -#: lh_config.en.1:378 -#, no-wrap -msgid "B<--symlinks> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:380 -msgid "" -"defines if the symlink hack should be enabled or disabled. The symlink hack " -"converts all absolute symlinks to relative ones. By default this is disabled " -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:380 -#, no-wrap -msgid "B<--syslinux-splash> I<FILE>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:382 -msgid "" -"defines the file of the syslinux splash graphic that should be used instead " -"of the default one." -msgstr "" - -# type: IP -#: lh_config.en.1:382 -#, no-wrap -msgid "B<--syslinux-timeout> I<SECONDS>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:384 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:384 -#, no-wrap -msgid "B<--syslinux-menu> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:386 -msgid "" -"defines if syslinux should be make use of the vgamenu capabilities or not." -msgstr "" - -# type: IP -#: lh_config.en.1:386 -#, no-wrap -msgid "B<--sysvinit> enabled|disabled" -msgstr "" - -# type: Plain text -#: lh_config.en.1:388 -msgid "" -"defines it the sysvinit hack should be enabled or disabled. The sysvinit " -"hack disables all non-essential services from starting up at bootup in order " -"to reduce overall boottime. By default this is disabled and in general there " -"you don't want to enable it." -msgstr "" - -# type: IP -#: lh_config.en.1:388 -#, no-wrap -msgid "B<--tasksel> aptitude|tasksel" -msgstr "" - -# type: Plain text -#: lh_config.en.1:390 -msgid "" -"selects which program is used to install tasks. By default, this is set to " -"tasksel." -msgstr "" - -# type: IP -#: lh_config.en.1:390 -#, no-wrap -msgid "B<--tasks> I<TASK>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:392 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:392 -#, no-wrap -msgid "B<--templates> I<PATH>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:394 -msgid "" -"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/." -msgstr "" - -# type: IP -#: lh_config.en.1:394 -#, no-wrap -msgid "B<--union-filesystem> aufs|unionfs" -msgstr "" - -# type: Plain text -#: lh_config.en.1:396 -msgid "" -"defines whetever to use UnionFS or Aufs as stackable unification filesystem. " -"When building etch images, this defaults to unionfs, everywhere else to aufs." -msgstr "" - -# type: IP -#: lh_config.en.1:396 -#, no-wrap -msgid "B<--virtual-root-filesystem> ext3" -msgstr "" - -# type: Plain text -#: lh_config.en.1:398 -msgid "" -"defines what filesystem to format the root filesystem when building virtual-" -"hdd images." -msgstr "" - -# type: IP -#: lh_config.en.1:398 -#, no-wrap -msgid "B<--virtual-root-size> MB" -msgstr "" - -# type: Plain text -#: lh_config.en.1:400 -msgid "" -"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." -msgstr "" - -# type: IP -#: lh_config.en.1:400 -#, no-wrap -msgid "B<--exposed-root> enabled|disabled" -msgstr "" - -# type: IP -#: lh_config.en.1:402 -#, no-wrap -msgid "B<--username> I<NAME>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:404 -msgid "sets the name of the account of the default user in the live system." -msgstr "" - -# type: IP -#: lh_config.en.1:404 -#, no-wrap -msgid "B<--win32-loader enabled|disabled>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:406 -msgid "defines if win32-loader should be included in the binary image or not." -msgstr "" - -# type: SH -#: lh_config.en.1:407 -#, no-wrap -msgid "ENVIRONMENT" -msgstr "" - -# type: Plain text -#: lh_config.en.1:409 -msgid "" -"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." -msgstr "" - -# type: SH -#: lh_config.en.1:410 -#, no-wrap -msgid "FILES" -msgstr "" - -# type: Plain text -#: lh_config.en.1:412 -msgid "I</etc/default/live-helper>" -msgstr "" - -# type: Plain text -#: lh_config.en.1:414 -msgid "" -"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 disabled by specifying the B<--ignore-system-defaults> option." -msgstr "" diff --git a/manpages/po4a/pot/lh_local.en.1.pot b/manpages/po4a/pot/lh_local.en.1.pot deleted file mode 100644 index 25adc4f4b..000000000 --- a/manpages/po4a/pot/lh_local.en.1.pot +++ /dev/null @@ -1,628 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_local.en.1:1 -#, no-wrap -msgid "LH_LOCAL" -msgstr "" - -# type: Plain text -#: lh_local.en.1:5 -msgid "lh_local - helper for using a local live-helper" -msgstr "" - -# type: Plain text -#: lh_local.en.1:8 -msgid "B<lh_local> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_local.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_local.en.1:14 -msgid "" -"lh_local has no specific options but understands all generic live-helper " -"options. See I<live-helper>(7) for a complete list of all generic live-" -"helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_source.en.1.pot b/manpages/po4a/pot/lh_source.en.1.pot deleted file mode 100644 index 27c1a4576..000000000 --- a/manpages/po4a/pot/lh_source.en.1.pot +++ /dev/null @@ -1,179 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:42+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 lh_chroot.en.1:3 -#: lh_clean.en.1:3 lh_config.en.1:3 lh.en.1:3 lh_source.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 lh_chroot.en.1:6 -#: lh_clean.en.1:6 lh_config.en.1:6 lh.en.1:6 lh_source.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 lh_chroot.en.1:9 -#: lh_clean.en.1:11 lh_config.en.1:201 lh.en.1:11 lh_source.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary.en.1:12 lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot.en.1:12 -#: lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 lh_source.en.1:12 -#: lh_testroot.en.1:14 live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary.en.1:15 lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot.en.1:15 -#: lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 lh_source.en.1:15 -#: lh_testroot.en.1:17 live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:17 lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot.en.1:17 -#: lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 lh_source.en.1:17 -#: lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:19 lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot.en.1:19 -#: lh_clean.en.1:38 lh_config.en.1:419 lh_source.en.1:19 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary.en.1:20 lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot.en.1:20 -#: lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 lh_source.en.1:20 -#: lh_testroot.en.1:22 live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:22 lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot.en.1:22 -#: lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 lh_source.en.1:22 -#: lh_testroot.en.1:24 live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:23 lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot.en.1:23 -#: lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 lh_source.en.1:23 -#: lh_testroot.en.1:25 live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:25 lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot.en.1:25 -#: lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 lh_source.en.1:25 -#: lh_testroot.en.1:27 live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:26 lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot.en.1:26 -#: lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 lh_source.en.1:26 -#: lh_testroot.en.1:28 live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:27 lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot.en.1:27 -#: lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 lh_source.en.1:27 -#: lh_testroot.en.1:29 live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_source.en.1:1 -#, no-wrap -msgid "LH_SOURCE" -msgstr "" - -# type: Plain text -#: lh_source.en.1:5 -msgid "" -"lh_source - create the optional fourth stage by generating a source image" -msgstr "" - -# type: Plain text -#: lh_source.en.1:8 -msgid "B<lh_source> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_source.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_source.en.1:14 -msgid "" -"lh_source has no specific options but understands all generic live-helper " -"options. See I<live-helper>(7) for a complete list of all generic live-" -"helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_source_checksums.en.1.pot b/manpages/po4a/pot/lh_source_checksums.en.1.pot deleted file mode 100644 index 0bd57bd4d..000000000 --- a/manpages/po4a/pot/lh_source_checksums.en.1.pot +++ /dev/null @@ -1,636 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I<lh_source>(1)" -msgstr "" - -# type: TH -#: lh_source_md5sum.en.1:1 -#, no-wrap -msgid "LH_SOURCE_MD5SUM" -msgstr "" - -# type: Plain text -#: lh_source_md5sum.en.1:5 -msgid "lh_source_md5sum - create source md5sum" -msgstr "" - -# type: Plain text -#: lh_source_md5sum.en.1:8 -msgid "B<lh_source_md5sum> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_source_md5sum.en.1:11 -msgid "" -"lh_source_md5sum is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It creates source md5sum." -msgstr "" - -# type: Plain text -#: lh_source_md5sum.en.1:14 -msgid "" -"lh_source_md5sum sources has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_source_debian-live.en.1.pot b/manpages/po4a/pot/lh_source_debian-live.en.1.pot deleted file mode 100644 index 32cec683a..000000000 --- a/manpages/po4a/pot/lh_source_debian-live.en.1.pot +++ /dev/null @@ -1,636 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I<lh_source>(1)" -msgstr "" - -# type: TH -#: lh_source_debian-live.en.1:1 -#, no-wrap -msgid "LH_SOURCE_DEBIAN_LIVE" -msgstr "" - -# type: Plain text -#: lh_source_debian-live.en.1:5 -msgid "lh_source_debian-live - copy debian-live config into source" -msgstr "" - -# type: Plain text -#: lh_source_debian-live.en.1:8 -msgid "B<lh_source_debian-live> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_source_debian-live.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_source_debian-live.en.1:14 -msgid "" -"lh_source_debian-live has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_source_debian.en.1.pot b/manpages/po4a/pot/lh_source_debian.en.1.pot deleted file mode 100644 index 90ee027fb..000000000 --- a/manpages/po4a/pot/lh_source_debian.en.1.pot +++ /dev/null @@ -1,636 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_source_debian.en.1:1 -#, no-wrap -msgid "LH_SOURCE_DEBIAN" -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:5 -msgid "lh_source_debian - download sources" -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:8 -msgid "B<lh_source_debian> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:11 -msgid "" -"lh_source_debian is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It downloads sources." -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:14 -msgid "" -"lh_source_debian has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I<lh_source>(1)" -msgstr "" diff --git a/manpages/po4a/pot/lh_source_disk.en.1.pot b/manpages/po4a/pot/lh_source_disk.en.1.pot deleted file mode 100644 index be99b74ad..000000000 --- a/manpages/po4a/pot/lh_source_disk.en.1.pot +++ /dev/null @@ -1,636 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I<lh_source>(1)" -msgstr "" - -# type: TH -#: lh_source_disk.en.1:1 -#, no-wrap -msgid "LH_SOURCE_DISK" -msgstr "" - -# type: Plain text -#: lh_source_disk.en.1:5 -msgid "lh_source_disk - install disk information into source" -msgstr "" - -# type: Plain text -#: lh_source_disk.en.1:8 -msgid "B<lh_source_disk> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_source_disk.en.1:11 -msgid "" -"lh_source_disk is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It installs disk information into source." -msgstr "" - -# type: Plain text -#: lh_source_disk.en.1:14 -msgid "" -"lh_source_disk has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_source_iso.en.1.pot b/manpages/po4a/pot/lh_source_iso.en.1.pot deleted file mode 100644 index af6574038..000000000 --- a/manpages/po4a/pot/lh_source_iso.en.1.pot +++ /dev/null @@ -1,636 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I<lh_source>(1)" -msgstr "" - -# type: TH -#: lh_source_iso.en.1:1 -#, no-wrap -msgid "LH_SOURCE_ISO" -msgstr "" - -# type: Plain text -#: lh_source_iso.en.1:5 -msgid "lh_source_iso - build iso source image" -msgstr "" - -# type: Plain text -#: lh_source_iso.en.1:8 -msgid "B<lh_source_iso> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_source_iso.en.1:11 -msgid "" -"lh_source_iso is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It builds iso source image." -msgstr "" - -# type: Plain text -#: lh_source_iso.en.1:14 -msgid "" -"lh_source_iso has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_source_net.en.1.pot b/manpages/po4a/pot/lh_source_net.en.1.pot deleted file mode 100644 index ce9fa60ac..000000000 --- a/manpages/po4a/pot/lh_source_net.en.1.pot +++ /dev/null @@ -1,636 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I<lh_source>(1)" -msgstr "" - -# type: TH -#: lh_source_net.en.1:1 -#, no-wrap -msgid "LH_SOURCE_NET" -msgstr "" - -# type: Plain text -#: lh_source_net.en.1:5 -msgid "lh_source_net - build source net image" -msgstr "" - -# type: Plain text -#: lh_source_net.en.1:8 -msgid "B<lh_source_net> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_source_net.en.1:11 -msgid "" -"lh_source_net is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It builds source net image." -msgstr "" - -# type: Plain text -#: lh_source_net.en.1:14 -msgid "" -"lh_source_net has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_source_tar.en.1.pot b/manpages/po4a/pot/lh_source_tar.en.1.pot deleted file mode 100644 index d2c61c648..000000000 --- a/manpages/po4a/pot/lh_source_tar.en.1.pot +++ /dev/null @@ -1,636 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I<lh_source>(1)" -msgstr "" - -# type: TH -#: lh_source_tar.en.1:1 -#, no-wrap -msgid "LH_SOURCE_TAR" -msgstr "" - -# type: Plain text -#: lh_source_tar.en.1:5 -msgid "lh_source_tar - build source tarball" -msgstr "" - -# type: Plain text -#: lh_source_tar.en.1:8 -msgid "B<lh_source_tar> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_source_tar.en.1:11 -msgid "" -"lh_source_tar is a low-level command (plumbing) of live-helper, the Debian " -"Live tool suite. It builds source tarball." -msgstr "" - -# type: Plain text -#: lh_source_tar.en.1:14 -msgid "" -"lh_source_tar has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_source_usb.en.1.pot b/manpages/po4a/pot/lh_source_usb.en.1.pot deleted file mode 100644 index 9e9cc009b..000000000 --- a/manpages/po4a/pot/lh_source_usb.en.1.pot +++ /dev/null @@ -1,636 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I<lh_source>(1)" -msgstr "" - -# type: TH -#: lh_source_usb-hdd.en.1:1 -#, no-wrap -msgid "LH_SOURCE_USB-HDD" -msgstr "" - -# type: Plain text -#: lh_source_usb-hdd.en.1:5 -msgid "lh_source_usb-hdd - build source usb-hdd image" -msgstr "" - -# type: Plain text -#: lh_source_usb-hdd.en.1:8 -msgid "B<lh_source_usb-hdd> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_source_usb-hdd.en.1:11 -msgid "" -"lh_source_usb-hdd is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It builds source usb-hdd image." -msgstr "" - -# type: Plain text -#: lh_source_usb-hdd.en.1:14 -msgid "" -"lh_source_usb-hdd has no specific options but understands all generic live-" -"helper options. See I<live-helper>(7) for a complete list of all generic " -"live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_source_virtual-hdd.en.1.pot b/manpages/po4a/pot/lh_source_virtual-hdd.en.1.pot deleted file mode 100644 index 7ff211da5..000000000 --- a/manpages/po4a/pot/lh_source_virtual-hdd.en.1.pot +++ /dev/null @@ -1,636 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:49+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary_chroot.en.1:1 lh_binary_debian-installer.en.1:1 -#: lh_binary_disk.en.1:1 lh_binary.en.1:1 lh_binary_encryption.en.1:1 -#: lh_binary_grub.en.1:1 lh_binary_includes.en.1:1 lh_binary_iso.en.1:1 -#: lh_binary_linux-image.en.1:1 lh_binary_local-hooks.en.1:1 -#: lh_binary_local-includes.en.1:1 lh_binary_local-packageslists.en.1:1 -#: lh_binary_manifest.en.1:1 lh_binary_md5sum.en.1:1 lh_binary_memtest.en.1:1 -#: lh_binary_net.en.1:1 lh_binary_rootfs.en.1:1 lh_binary_silo.en.1:1 -#: lh_binary_syslinux.en.1:1 lh_binary_tar.en.1:1 lh_binary_usb-hdd.en.1:1 -#: lh_binary_virtual-hdd.en.1:1 lh_binary_win32-loader.en.1:1 -#: lh_binary_yaboot.en.1:1 lh_bootstrap_cache.en.1:1 -#: lh_bootstrap_cdebootstrap.en.1:1 lh_bootstrap_copy.en.1:1 -#: lh_bootstrap_debootstrap.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 -#: lh_chroot_apt.en.1:1 lh_chroot_cache.en.1:1 lh_chroot_debianchroot.en.1:1 -#: lh_chroot_devpts.en.1:1 lh_chroot_dpkg.en.1:1 lh_chroot.en.1:1 -#: lh_chroot_hacks.en.1:1 lh_chroot_hooks.en.1:1 lh_chroot_hostname.en.1:1 -#: lh_chroot_hosts.en.1:1 lh_chroot_install-packages.en.1:1 -#: lh_chroot_interactive.en.1:1 lh_chroot_linux-image.en.1:1 -#: lh_chroot_local-hooks.en.1:1 lh_chroot_local-includes.en.1:1 -#: lh_chroot_localization.en.1:1 lh_chroot_local-packages.en.1:1 -#: lh_chroot_local-patches.en.1:1 lh_chroot_local-preseed.en.1:1 -#: lh_chroot_packages.en.1:1 lh_chroot_packageslists.en.1:1 -#: lh_chroot_preseed.en.1:1 lh_chroot_proc.en.1:1 lh_chroot_resolv.en.1:1 -#: lh_chroot_selinuxfs.en.1:1 lh_chroot_sources.en.1:1 -#: lh_chroot_symlinks.en.1:1 lh_chroot_sysfs.en.1:1 lh_chroot_sysvinit.en.1:1 -#: lh_chroot_sysv-rc.en.1:1 lh_chroot_tasks.en.1:1 lh_clean.en.1:1 -#: lh_config.en.1:1 lh.en.1:1 lh_local.en.1:1 lh_source_debian.en.1:1 -#: lh_source_debian-live.en.1:1 lh_source_disk.en.1:1 lh_source.en.1:1 -#: lh_source_iso.en.1:1 lh_source_md5sum.en.1:1 lh_source_net.en.1:1 -#: lh_source_tar.en.1:1 lh_source_usb-hdd.en.1:1 lh_source_virtual-hdd.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:3 lh_binary_debian-installer.en.1:3 -#: lh_binary_disk.en.1:3 lh_binary.en.1:3 lh_binary_encryption.en.1:3 -#: lh_binary_grub.en.1:3 lh_binary_includes.en.1:3 lh_binary_iso.en.1:3 -#: lh_binary_linux-image.en.1:3 lh_binary_local-hooks.en.1:3 -#: lh_binary_local-includes.en.1:3 lh_binary_local-packageslists.en.1:3 -#: lh_binary_manifest.en.1:3 lh_binary_md5sum.en.1:3 lh_binary_memtest.en.1:3 -#: lh_binary_net.en.1:3 lh_binary_rootfs.en.1:3 lh_binary_silo.en.1:3 -#: lh_binary_syslinux.en.1:3 lh_binary_tar.en.1:3 lh_binary_usb-hdd.en.1:3 -#: lh_binary_virtual-hdd.en.1:3 lh_binary_win32-loader.en.1:3 -#: lh_binary_yaboot.en.1:3 lh_bootstrap_cache.en.1:3 -#: lh_bootstrap_cdebootstrap.en.1:3 lh_bootstrap_copy.en.1:3 -#: lh_bootstrap_debootstrap.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 -#: lh_chroot_apt.en.1:3 lh_chroot_cache.en.1:3 lh_chroot_debianchroot.en.1:3 -#: lh_chroot_devpts.en.1:3 lh_chroot_dpkg.en.1:3 lh_chroot.en.1:3 -#: lh_chroot_hacks.en.1:3 lh_chroot_hooks.en.1:3 lh_chroot_hostname.en.1:3 -#: lh_chroot_hosts.en.1:3 lh_chroot_install-packages.en.1:3 -#: lh_chroot_interactive.en.1:3 lh_chroot_linux-image.en.1:3 -#: lh_chroot_local-hooks.en.1:3 lh_chroot_local-includes.en.1:3 -#: lh_chroot_localization.en.1:3 lh_chroot_local-packages.en.1:3 -#: lh_chroot_local-patches.en.1:3 lh_chroot_local-preseed.en.1:3 -#: lh_chroot_packages.en.1:3 lh_chroot_packageslists.en.1:3 -#: lh_chroot_preseed.en.1:3 lh_chroot_proc.en.1:3 lh_chroot_resolv.en.1:3 -#: lh_chroot_selinuxfs.en.1:3 lh_chroot_sources.en.1:3 -#: lh_chroot_symlinks.en.1:3 lh_chroot_sysfs.en.1:3 lh_chroot_sysvinit.en.1:3 -#: lh_chroot_sysv-rc.en.1:3 lh_chroot_tasks.en.1:3 lh_clean.en.1:3 -#: lh_config.en.1:3 lh.en.1:3 lh_local.en.1:3 lh_source_debian.en.1:3 -#: lh_source_debian-live.en.1:3 lh_source_disk.en.1:3 lh_source.en.1:3 -#: lh_source_iso.en.1:3 lh_source_md5sum.en.1:3 lh_source_net.en.1:3 -#: lh_source_tar.en.1:3 lh_source_usb-hdd.en.1:3 lh_source_virtual-hdd.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:6 lh_binary_debian-installer.en.1:6 -#: lh_binary_disk.en.1:6 lh_binary.en.1:6 lh_binary_encryption.en.1:6 -#: lh_binary_grub.en.1:6 lh_binary_includes.en.1:6 lh_binary_iso.en.1:6 -#: lh_binary_linux-image.en.1:6 lh_binary_local-hooks.en.1:6 -#: lh_binary_local-includes.en.1:6 lh_binary_local-packageslists.en.1:6 -#: lh_binary_manifest.en.1:6 lh_binary_md5sum.en.1:6 lh_binary_memtest.en.1:6 -#: lh_binary_net.en.1:6 lh_binary_rootfs.en.1:6 lh_binary_silo.en.1:6 -#: lh_binary_syslinux.en.1:6 lh_binary_tar.en.1:6 lh_binary_usb-hdd.en.1:6 -#: lh_binary_virtual-hdd.en.1:6 lh_binary_win32-loader.en.1:6 -#: lh_binary_yaboot.en.1:6 lh_bootstrap_cache.en.1:6 -#: lh_bootstrap_cdebootstrap.en.1:6 lh_bootstrap_copy.en.1:6 -#: lh_bootstrap_debootstrap.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 -#: lh_chroot_apt.en.1:6 lh_chroot_cache.en.1:6 lh_chroot_debianchroot.en.1:6 -#: lh_chroot_devpts.en.1:6 lh_chroot_dpkg.en.1:6 lh_chroot.en.1:6 -#: lh_chroot_hacks.en.1:6 lh_chroot_hooks.en.1:6 lh_chroot_hostname.en.1:6 -#: lh_chroot_hosts.en.1:6 lh_chroot_install-packages.en.1:6 -#: lh_chroot_interactive.en.1:6 lh_chroot_linux-image.en.1:6 -#: lh_chroot_local-hooks.en.1:6 lh_chroot_local-includes.en.1:6 -#: lh_chroot_localization.en.1:6 lh_chroot_local-packages.en.1:6 -#: lh_chroot_local-patches.en.1:6 lh_chroot_local-preseed.en.1:6 -#: lh_chroot_packages.en.1:6 lh_chroot_packageslists.en.1:6 -#: lh_chroot_preseed.en.1:6 lh_chroot_proc.en.1:6 lh_chroot_resolv.en.1:6 -#: lh_chroot_selinuxfs.en.1:6 lh_chroot_sources.en.1:6 -#: lh_chroot_symlinks.en.1:6 lh_chroot_sysfs.en.1:6 lh_chroot_sysvinit.en.1:6 -#: lh_chroot_sysv-rc.en.1:6 lh_chroot_tasks.en.1:6 lh_clean.en.1:6 -#: lh_config.en.1:6 lh.en.1:6 lh_local.en.1:6 lh_source_debian.en.1:6 -#: lh_source_debian-live.en.1:6 lh_source_disk.en.1:6 lh_source.en.1:6 -#: lh_source_iso.en.1:6 lh_source_md5sum.en.1:6 lh_source_net.en.1:6 -#: lh_source_tar.en.1:6 lh_source_usb-hdd.en.1:6 lh_source_virtual-hdd.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:9 lh_binary_debian-installer.en.1:9 -#: lh_binary_disk.en.1:9 lh_binary.en.1:9 lh_binary_encryption.en.1:9 -#: lh_binary_grub.en.1:9 lh_binary_includes.en.1:9 lh_binary_iso.en.1:9 -#: lh_binary_linux-image.en.1:9 lh_binary_local-hooks.en.1:9 -#: lh_binary_local-includes.en.1:9 lh_binary_local-packageslists.en.1:9 -#: lh_binary_manifest.en.1:9 lh_binary_md5sum.en.1:9 lh_binary_memtest.en.1:9 -#: lh_binary_net.en.1:9 lh_binary_rootfs.en.1:9 lh_binary_silo.en.1:9 -#: lh_binary_syslinux.en.1:9 lh_binary_tar.en.1:9 lh_binary_usb-hdd.en.1:9 -#: lh_binary_virtual-hdd.en.1:9 lh_binary_win32-loader.en.1:9 -#: lh_binary_yaboot.en.1:9 lh_bootstrap_cache.en.1:9 -#: lh_bootstrap_cdebootstrap.en.1:9 lh_bootstrap_copy.en.1:9 -#: lh_bootstrap_debootstrap.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 -#: lh_chroot_apt.en.1:9 lh_chroot_cache.en.1:9 lh_chroot_debianchroot.en.1:9 -#: lh_chroot_devpts.en.1:9 lh_chroot_dpkg.en.1:9 lh_chroot.en.1:9 -#: lh_chroot_hacks.en.1:9 lh_chroot_hooks.en.1:9 lh_chroot_hostname.en.1:9 -#: lh_chroot_hosts.en.1:9 lh_chroot_install-packages.en.1:9 -#: lh_chroot_interactive.en.1:9 lh_chroot_linux-image.en.1:9 -#: lh_chroot_local-hooks.en.1:9 lh_chroot_local-includes.en.1:9 -#: lh_chroot_localization.en.1:9 lh_chroot_local-packages.en.1:9 -#: lh_chroot_local-patches.en.1:9 lh_chroot_local-preseed.en.1:9 -#: lh_chroot_packages.en.1:9 lh_chroot_packageslists.en.1:9 -#: lh_chroot_preseed.en.1:9 lh_chroot_proc.en.1:9 lh_chroot_resolv.en.1:9 -#: lh_chroot_selinuxfs.en.1:9 lh_chroot_sources.en.1:9 -#: lh_chroot_symlinks.en.1:9 lh_chroot_sysfs.en.1:9 lh_chroot_sysvinit.en.1:9 -#: lh_chroot_sysv-rc.en.1:9 lh_chroot_tasks.en.1:9 lh_clean.en.1:11 -#: lh_config.en.1:201 lh.en.1:11 lh_local.en.1:9 lh_source_debian.en.1:9 -#: lh_source_debian-live.en.1:9 lh_source_disk.en.1:9 lh_source.en.1:9 -#: lh_source_iso.en.1:9 lh_source_md5sum.en.1:9 lh_source_net.en.1:9 -#: lh_source_tar.en.1:9 lh_source_usb-hdd.en.1:9 lh_source_virtual-hdd.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:12 lh_binary_debian-installer.en.1:12 -#: lh_binary_disk.en.1:12 lh_binary.en.1:12 lh_binary_encryption.en.1:12 -#: lh_binary_grub.en.1:12 lh_binary_includes.en.1:12 lh_binary_iso.en.1:12 -#: lh_binary_linux-image.en.1:12 lh_binary_local-hooks.en.1:12 -#: lh_binary_local-includes.en.1:12 lh_binary_local-packageslists.en.1:12 -#: lh_binary_manifest.en.1:12 lh_binary_md5sum.en.1:12 -#: lh_binary_memtest.en.1:12 lh_binary_net.en.1:12 lh_binary_rootfs.en.1:12 -#: lh_binary_silo.en.1:12 lh_binary_syslinux.en.1:12 lh_binary_tar.en.1:12 -#: lh_binary_usb-hdd.en.1:12 lh_binary_virtual-hdd.en.1:12 -#: lh_binary_win32-loader.en.1:12 lh_binary_yaboot.en.1:12 -#: lh_bootstrap_cache.en.1:12 lh_bootstrap_cdebootstrap.en.1:12 -#: lh_bootstrap_copy.en.1:14 lh_bootstrap_debootstrap.en.1:12 -#: lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot_apt.en.1:12 -#: lh_chroot_cache.en.1:12 lh_chroot_debianchroot.en.1:12 -#: lh_chroot_devpts.en.1:12 lh_chroot_dpkg.en.1:12 lh_chroot.en.1:12 -#: lh_chroot_hacks.en.1:12 lh_chroot_hooks.en.1:12 lh_chroot_hostname.en.1:12 -#: lh_chroot_hosts.en.1:12 lh_chroot_install-packages.en.1:12 -#: lh_chroot_interactive.en.1:12 lh_chroot_linux-image.en.1:12 -#: lh_chroot_local-hooks.en.1:12 lh_chroot_local-includes.en.1:12 -#: lh_chroot_localization.en.1:12 lh_chroot_local-packages.en.1:12 -#: lh_chroot_local-patches.en.1:12 lh_chroot_local-preseed.en.1:12 -#: lh_chroot_packages.en.1:12 lh_chroot_packageslists.en.1:12 -#: lh_chroot_preseed.en.1:12 lh_chroot_proc.en.1:12 lh_chroot_resolv.en.1:12 -#: lh_chroot_selinuxfs.en.1:12 lh_chroot_sources.en.1:12 -#: lh_chroot_symlinks.en.1:12 lh_chroot_sysfs.en.1:12 -#: lh_chroot_sysvinit.en.1:12 lh_chroot_sysv-rc.en.1:12 -#: lh_chroot_tasks.en.1:12 lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 -#: lh_local.en.1:12 lh_source_debian.en.1:12 lh_source_debian-live.en.1:12 -#: lh_source_disk.en.1:12 lh_source.en.1:12 lh_source_iso.en.1:12 -#: lh_source_md5sum.en.1:12 lh_source_net.en.1:12 lh_source_tar.en.1:12 -#: lh_source_usb-hdd.en.1:12 lh_source_virtual-hdd.en.1:12 lh_testroot.en.1:14 -#: live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:15 lh_binary_debian-installer.en.1:15 -#: lh_binary_disk.en.1:15 lh_binary.en.1:15 lh_binary_encryption.en.1:15 -#: lh_binary_grub.en.1:15 lh_binary_includes.en.1:15 lh_binary_iso.en.1:15 -#: lh_binary_linux-image.en.1:15 lh_binary_local-hooks.en.1:15 -#: lh_binary_local-includes.en.1:15 lh_binary_local-packageslists.en.1:15 -#: lh_binary_manifest.en.1:15 lh_binary_md5sum.en.1:15 -#: lh_binary_memtest.en.1:15 lh_binary_net.en.1:15 lh_binary_rootfs.en.1:15 -#: lh_binary_silo.en.1:15 lh_binary_syslinux.en.1:15 lh_binary_tar.en.1:15 -#: lh_binary_usb-hdd.en.1:15 lh_binary_virtual-hdd.en.1:15 -#: lh_binary_win32-loader.en.1:15 lh_binary_yaboot.en.1:15 -#: lh_bootstrap_cache.en.1:15 lh_bootstrap_cdebootstrap.en.1:15 -#: lh_bootstrap_copy.en.1:17 lh_bootstrap_debootstrap.en.1:15 -#: lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot_apt.en.1:15 -#: lh_chroot_cache.en.1:15 lh_chroot_debianchroot.en.1:15 -#: lh_chroot_devpts.en.1:15 lh_chroot_dpkg.en.1:15 lh_chroot.en.1:15 -#: lh_chroot_hacks.en.1:15 lh_chroot_hooks.en.1:15 lh_chroot_hostname.en.1:15 -#: lh_chroot_hosts.en.1:15 lh_chroot_install-packages.en.1:15 -#: lh_chroot_interactive.en.1:15 lh_chroot_linux-image.en.1:15 -#: lh_chroot_local-hooks.en.1:15 lh_chroot_local-includes.en.1:15 -#: lh_chroot_localization.en.1:15 lh_chroot_local-packages.en.1:15 -#: lh_chroot_local-patches.en.1:15 lh_chroot_local-preseed.en.1:15 -#: lh_chroot_packages.en.1:15 lh_chroot_packageslists.en.1:15 -#: lh_chroot_preseed.en.1:15 lh_chroot_proc.en.1:15 lh_chroot_resolv.en.1:15 -#: lh_chroot_selinuxfs.en.1:15 lh_chroot_sources.en.1:15 -#: lh_chroot_symlinks.en.1:15 lh_chroot_sysfs.en.1:15 -#: lh_chroot_sysvinit.en.1:15 lh_chroot_sysv-rc.en.1:15 -#: lh_chroot_tasks.en.1:15 lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 -#: lh_local.en.1:15 lh_source_debian.en.1:15 lh_source_debian-live.en.1:15 -#: lh_source_disk.en.1:15 lh_source.en.1:15 lh_source_iso.en.1:15 -#: lh_source_md5sum.en.1:15 lh_source_net.en.1:15 lh_source_tar.en.1:15 -#: lh_source_usb-hdd.en.1:15 lh_source_virtual-hdd.en.1:15 lh_testroot.en.1:17 -#: live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:19 lh_binary_debian-installer.en.1:19 -#: lh_binary_disk.en.1:19 lh_binary.en.1:17 lh_binary_encryption.en.1:19 -#: lh_binary_grub.en.1:19 lh_binary_includes.en.1:19 lh_binary_iso.en.1:19 -#: lh_binary_linux-image.en.1:19 lh_binary_local-hooks.en.1:19 -#: lh_binary_local-includes.en.1:19 lh_binary_local-packageslists.en.1:19 -#: lh_binary_manifest.en.1:19 lh_binary_md5sum.en.1:19 -#: lh_binary_memtest.en.1:19 lh_binary_net.en.1:19 lh_binary_rootfs.en.1:19 -#: lh_binary_silo.en.1:19 lh_binary_syslinux.en.1:19 lh_binary_tar.en.1:19 -#: lh_binary_usb-hdd.en.1:19 lh_binary_virtual-hdd.en.1:19 -#: lh_binary_win32-loader.en.1:19 lh_binary_yaboot.en.1:19 -#: lh_bootstrap_cache.en.1:19 lh_bootstrap_cdebootstrap.en.1:21 -#: lh_bootstrap_copy.en.1:21 lh_bootstrap_debootstrap.en.1:21 -#: lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot_apt.en.1:19 -#: lh_chroot_cache.en.1:19 lh_chroot_debianchroot.en.1:19 -#: lh_chroot_devpts.en.1:19 lh_chroot_dpkg.en.1:19 lh_chroot.en.1:17 -#: lh_chroot_hacks.en.1:19 lh_chroot_hooks.en.1:19 lh_chroot_hostname.en.1:19 -#: lh_chroot_hosts.en.1:19 lh_chroot_install-packages.en.1:19 -#: lh_chroot_interactive.en.1:19 lh_chroot_linux-image.en.1:19 -#: lh_chroot_local-hooks.en.1:19 lh_chroot_local-includes.en.1:19 -#: lh_chroot_localization.en.1:19 lh_chroot_local-packages.en.1:19 -#: lh_chroot_local-patches.en.1:19 lh_chroot_local-preseed.en.1:19 -#: lh_chroot_packages.en.1:19 lh_chroot_packageslists.en.1:19 -#: lh_chroot_preseed.en.1:19 lh_chroot_proc.en.1:19 lh_chroot_resolv.en.1:19 -#: lh_chroot_selinuxfs.en.1:19 lh_chroot_sources.en.1:19 -#: lh_chroot_symlinks.en.1:19 lh_chroot_sysfs.en.1:19 -#: lh_chroot_sysvinit.en.1:19 lh_chroot_sysv-rc.en.1:19 -#: lh_chroot_tasks.en.1:19 lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 -#: lh_local.en.1:17 lh_source_debian.en.1:19 lh_source_debian-live.en.1:19 -#: lh_source_disk.en.1:19 lh_source.en.1:17 lh_source_iso.en.1:19 -#: lh_source_md5sum.en.1:19 lh_source_net.en.1:19 lh_source_tar.en.1:19 -#: lh_source_usb-hdd.en.1:19 lh_source_virtual-hdd.en.1:19 lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:21 lh_binary_debian-installer.en.1:21 -#: lh_binary_disk.en.1:21 lh_binary.en.1:19 lh_binary_encryption.en.1:21 -#: lh_binary_grub.en.1:21 lh_binary_includes.en.1:21 lh_binary_iso.en.1:21 -#: lh_binary_linux-image.en.1:21 lh_binary_local-hooks.en.1:21 -#: lh_binary_local-includes.en.1:21 lh_binary_local-packageslists.en.1:21 -#: lh_binary_manifest.en.1:21 lh_binary_md5sum.en.1:21 -#: lh_binary_memtest.en.1:21 lh_binary_net.en.1:21 lh_binary_rootfs.en.1:21 -#: lh_binary_silo.en.1:21 lh_binary_syslinux.en.1:21 lh_binary_tar.en.1:21 -#: lh_binary_usb-hdd.en.1:21 lh_binary_virtual-hdd.en.1:21 -#: lh_binary_win32-loader.en.1:21 lh_binary_yaboot.en.1:21 -#: lh_bootstrap_cache.en.1:21 lh_bootstrap_cdebootstrap.en.1:23 -#: lh_bootstrap_copy.en.1:23 lh_bootstrap_debootstrap.en.1:23 -#: lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot_apt.en.1:21 -#: lh_chroot_cache.en.1:21 lh_chroot_debianchroot.en.1:21 -#: lh_chroot_devpts.en.1:21 lh_chroot_dpkg.en.1:21 lh_chroot.en.1:19 -#: lh_chroot_hacks.en.1:21 lh_chroot_hooks.en.1:21 lh_chroot_hostname.en.1:21 -#: lh_chroot_hosts.en.1:21 lh_chroot_install-packages.en.1:21 -#: lh_chroot_interactive.en.1:21 lh_chroot_linux-image.en.1:21 -#: lh_chroot_local-hooks.en.1:21 lh_chroot_local-includes.en.1:21 -#: lh_chroot_localization.en.1:21 lh_chroot_local-packages.en.1:21 -#: lh_chroot_local-patches.en.1:21 lh_chroot_local-preseed.en.1:21 -#: lh_chroot_packages.en.1:21 lh_chroot_packageslists.en.1:21 -#: lh_chroot_preseed.en.1:21 lh_chroot_proc.en.1:21 lh_chroot_resolv.en.1:21 -#: lh_chroot_selinuxfs.en.1:21 lh_chroot_sources.en.1:21 -#: lh_chroot_symlinks.en.1:21 lh_chroot_sysfs.en.1:21 -#: lh_chroot_sysvinit.en.1:21 lh_chroot_sysv-rc.en.1:21 -#: lh_chroot_tasks.en.1:21 lh_clean.en.1:38 lh_config.en.1:419 -#: lh_local.en.1:19 lh_source_debian.en.1:21 lh_source_debian-live.en.1:21 -#: lh_source_disk.en.1:21 lh_source.en.1:19 lh_source_iso.en.1:21 -#: lh_source_md5sum.en.1:21 lh_source_net.en.1:21 lh_source_tar.en.1:21 -#: lh_source_usb-hdd.en.1:21 lh_source_virtual-hdd.en.1:21 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:22 lh_binary_debian-installer.en.1:22 -#: lh_binary_disk.en.1:22 lh_binary.en.1:20 lh_binary_encryption.en.1:22 -#: lh_binary_grub.en.1:22 lh_binary_includes.en.1:22 lh_binary_iso.en.1:22 -#: lh_binary_linux-image.en.1:22 lh_binary_local-hooks.en.1:22 -#: lh_binary_local-includes.en.1:22 lh_binary_local-packageslists.en.1:22 -#: lh_binary_manifest.en.1:22 lh_binary_md5sum.en.1:22 -#: lh_binary_memtest.en.1:22 lh_binary_net.en.1:22 lh_binary_rootfs.en.1:22 -#: lh_binary_silo.en.1:22 lh_binary_syslinux.en.1:22 lh_binary_tar.en.1:22 -#: lh_binary_usb-hdd.en.1:22 lh_binary_virtual-hdd.en.1:22 -#: lh_binary_win32-loader.en.1:22 lh_binary_yaboot.en.1:22 -#: lh_bootstrap_cache.en.1:22 lh_bootstrap_cdebootstrap.en.1:24 -#: lh_bootstrap_copy.en.1:24 lh_bootstrap_debootstrap.en.1:24 -#: lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot_apt.en.1:22 -#: lh_chroot_cache.en.1:22 lh_chroot_debianchroot.en.1:22 -#: lh_chroot_devpts.en.1:22 lh_chroot_dpkg.en.1:22 lh_chroot.en.1:20 -#: lh_chroot_hacks.en.1:22 lh_chroot_hooks.en.1:22 lh_chroot_hostname.en.1:22 -#: lh_chroot_hosts.en.1:22 lh_chroot_install-packages.en.1:22 -#: lh_chroot_interactive.en.1:22 lh_chroot_linux-image.en.1:22 -#: lh_chroot_local-hooks.en.1:22 lh_chroot_local-includes.en.1:22 -#: lh_chroot_localization.en.1:22 lh_chroot_local-packages.en.1:22 -#: lh_chroot_local-patches.en.1:22 lh_chroot_local-preseed.en.1:22 -#: lh_chroot_packages.en.1:22 lh_chroot_packageslists.en.1:22 -#: lh_chroot_preseed.en.1:22 lh_chroot_proc.en.1:22 lh_chroot_resolv.en.1:22 -#: lh_chroot_selinuxfs.en.1:22 lh_chroot_sources.en.1:22 -#: lh_chroot_symlinks.en.1:22 lh_chroot_sysfs.en.1:22 -#: lh_chroot_sysvinit.en.1:22 lh_chroot_sysv-rc.en.1:22 -#: lh_chroot_tasks.en.1:22 lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 -#: lh_local.en.1:20 lh_source_debian.en.1:22 lh_source_debian-live.en.1:22 -#: lh_source_disk.en.1:22 lh_source.en.1:20 lh_source_iso.en.1:22 -#: lh_source_md5sum.en.1:22 lh_source_net.en.1:22 lh_source_tar.en.1:22 -#: lh_source_usb-hdd.en.1:22 lh_source_virtual-hdd.en.1:22 lh_testroot.en.1:22 -#: live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:24 lh_binary_debian-installer.en.1:24 -#: lh_binary_disk.en.1:24 lh_binary.en.1:22 lh_binary_encryption.en.1:24 -#: lh_binary_grub.en.1:24 lh_binary_includes.en.1:24 lh_binary_iso.en.1:24 -#: lh_binary_linux-image.en.1:24 lh_binary_local-hooks.en.1:24 -#: lh_binary_local-includes.en.1:24 lh_binary_local-packageslists.en.1:24 -#: lh_binary_manifest.en.1:24 lh_binary_md5sum.en.1:24 -#: lh_binary_memtest.en.1:24 lh_binary_net.en.1:24 lh_binary_rootfs.en.1:24 -#: lh_binary_silo.en.1:24 lh_binary_syslinux.en.1:24 lh_binary_tar.en.1:24 -#: lh_binary_usb-hdd.en.1:24 lh_binary_virtual-hdd.en.1:24 -#: lh_binary_win32-loader.en.1:24 lh_binary_yaboot.en.1:24 -#: lh_bootstrap_cache.en.1:24 lh_bootstrap_cdebootstrap.en.1:26 -#: lh_bootstrap_copy.en.1:26 lh_bootstrap_debootstrap.en.1:26 -#: lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot_apt.en.1:24 -#: lh_chroot_cache.en.1:24 lh_chroot_debianchroot.en.1:24 -#: lh_chroot_devpts.en.1:24 lh_chroot_dpkg.en.1:24 lh_chroot.en.1:22 -#: lh_chroot_hacks.en.1:24 lh_chroot_hooks.en.1:24 lh_chroot_hostname.en.1:24 -#: lh_chroot_hosts.en.1:24 lh_chroot_install-packages.en.1:24 -#: lh_chroot_interactive.en.1:24 lh_chroot_linux-image.en.1:24 -#: lh_chroot_local-hooks.en.1:24 lh_chroot_local-includes.en.1:24 -#: lh_chroot_localization.en.1:24 lh_chroot_local-packages.en.1:24 -#: lh_chroot_local-patches.en.1:24 lh_chroot_local-preseed.en.1:24 -#: lh_chroot_packages.en.1:24 lh_chroot_packageslists.en.1:24 -#: lh_chroot_preseed.en.1:24 lh_chroot_proc.en.1:24 lh_chroot_resolv.en.1:24 -#: lh_chroot_selinuxfs.en.1:24 lh_chroot_sources.en.1:24 -#: lh_chroot_symlinks.en.1:24 lh_chroot_sysfs.en.1:24 -#: lh_chroot_sysvinit.en.1:24 lh_chroot_sysv-rc.en.1:24 -#: lh_chroot_tasks.en.1:24 lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 -#: lh_local.en.1:22 lh_source_debian.en.1:24 lh_source_debian-live.en.1:24 -#: lh_source_disk.en.1:24 lh_source.en.1:22 lh_source_iso.en.1:24 -#: lh_source_md5sum.en.1:24 lh_source_net.en.1:24 lh_source_tar.en.1:24 -#: lh_source_usb-hdd.en.1:24 lh_source_virtual-hdd.en.1:24 lh_testroot.en.1:24 -#: live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:25 lh_binary_debian-installer.en.1:25 -#: lh_binary_disk.en.1:25 lh_binary.en.1:23 lh_binary_encryption.en.1:25 -#: lh_binary_grub.en.1:25 lh_binary_includes.en.1:25 lh_binary_iso.en.1:25 -#: lh_binary_linux-image.en.1:25 lh_binary_local-hooks.en.1:25 -#: lh_binary_local-includes.en.1:25 lh_binary_local-packageslists.en.1:25 -#: lh_binary_manifest.en.1:25 lh_binary_md5sum.en.1:25 -#: lh_binary_memtest.en.1:25 lh_binary_net.en.1:25 lh_binary_rootfs.en.1:25 -#: lh_binary_silo.en.1:25 lh_binary_syslinux.en.1:25 lh_binary_tar.en.1:25 -#: lh_binary_usb-hdd.en.1:25 lh_binary_virtual-hdd.en.1:25 -#: lh_binary_win32-loader.en.1:25 lh_binary_yaboot.en.1:25 -#: lh_bootstrap_cache.en.1:25 lh_bootstrap_cdebootstrap.en.1:27 -#: lh_bootstrap_copy.en.1:27 lh_bootstrap_debootstrap.en.1:27 -#: lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot_apt.en.1:25 -#: lh_chroot_cache.en.1:25 lh_chroot_debianchroot.en.1:25 -#: lh_chroot_devpts.en.1:25 lh_chroot_dpkg.en.1:25 lh_chroot.en.1:23 -#: lh_chroot_hacks.en.1:25 lh_chroot_hooks.en.1:25 lh_chroot_hostname.en.1:25 -#: lh_chroot_hosts.en.1:25 lh_chroot_install-packages.en.1:25 -#: lh_chroot_interactive.en.1:25 lh_chroot_linux-image.en.1:25 -#: lh_chroot_local-hooks.en.1:25 lh_chroot_local-includes.en.1:25 -#: lh_chroot_localization.en.1:25 lh_chroot_local-packages.en.1:25 -#: lh_chroot_local-patches.en.1:25 lh_chroot_local-preseed.en.1:25 -#: lh_chroot_packages.en.1:25 lh_chroot_packageslists.en.1:25 -#: lh_chroot_preseed.en.1:25 lh_chroot_proc.en.1:25 lh_chroot_resolv.en.1:25 -#: lh_chroot_selinuxfs.en.1:25 lh_chroot_sources.en.1:25 -#: lh_chroot_symlinks.en.1:25 lh_chroot_sysfs.en.1:25 -#: lh_chroot_sysvinit.en.1:25 lh_chroot_sysv-rc.en.1:25 -#: lh_chroot_tasks.en.1:25 lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 -#: lh_local.en.1:23 lh_source_debian.en.1:25 lh_source_debian-live.en.1:25 -#: lh_source_disk.en.1:25 lh_source.en.1:23 lh_source_iso.en.1:25 -#: lh_source_md5sum.en.1:25 lh_source_net.en.1:25 lh_source_tar.en.1:25 -#: lh_source_usb-hdd.en.1:25 lh_source_virtual-hdd.en.1:25 lh_testroot.en.1:25 -#: live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:27 lh_binary_debian-installer.en.1:27 -#: lh_binary_disk.en.1:27 lh_binary.en.1:25 lh_binary_encryption.en.1:27 -#: lh_binary_grub.en.1:27 lh_binary_includes.en.1:27 lh_binary_iso.en.1:27 -#: lh_binary_linux-image.en.1:27 lh_binary_local-hooks.en.1:27 -#: lh_binary_local-includes.en.1:27 lh_binary_local-packageslists.en.1:27 -#: lh_binary_manifest.en.1:27 lh_binary_md5sum.en.1:27 -#: lh_binary_memtest.en.1:27 lh_binary_net.en.1:27 lh_binary_rootfs.en.1:27 -#: lh_binary_silo.en.1:27 lh_binary_syslinux.en.1:27 lh_binary_tar.en.1:27 -#: lh_binary_usb-hdd.en.1:27 lh_binary_virtual-hdd.en.1:27 -#: lh_binary_win32-loader.en.1:27 lh_binary_yaboot.en.1:27 -#: lh_bootstrap_cache.en.1:27 lh_bootstrap_cdebootstrap.en.1:29 -#: lh_bootstrap_copy.en.1:29 lh_bootstrap_debootstrap.en.1:29 -#: lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot_apt.en.1:27 -#: lh_chroot_cache.en.1:27 lh_chroot_debianchroot.en.1:27 -#: lh_chroot_devpts.en.1:27 lh_chroot_dpkg.en.1:27 lh_chroot.en.1:25 -#: lh_chroot_hacks.en.1:27 lh_chroot_hooks.en.1:27 lh_chroot_hostname.en.1:27 -#: lh_chroot_hosts.en.1:27 lh_chroot_install-packages.en.1:27 -#: lh_chroot_interactive.en.1:27 lh_chroot_linux-image.en.1:27 -#: lh_chroot_local-hooks.en.1:27 lh_chroot_local-includes.en.1:27 -#: lh_chroot_localization.en.1:27 lh_chroot_local-packages.en.1:27 -#: lh_chroot_local-patches.en.1:27 lh_chroot_local-preseed.en.1:27 -#: lh_chroot_packages.en.1:27 lh_chroot_packageslists.en.1:27 -#: lh_chroot_preseed.en.1:27 lh_chroot_proc.en.1:27 lh_chroot_resolv.en.1:27 -#: lh_chroot_selinuxfs.en.1:27 lh_chroot_sources.en.1:27 -#: lh_chroot_symlinks.en.1:27 lh_chroot_sysfs.en.1:27 -#: lh_chroot_sysvinit.en.1:27 lh_chroot_sysv-rc.en.1:27 -#: lh_chroot_tasks.en.1:27 lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 -#: lh_local.en.1:25 lh_source_debian.en.1:27 lh_source_debian-live.en.1:27 -#: lh_source_disk.en.1:27 lh_source.en.1:25 lh_source_iso.en.1:27 -#: lh_source_md5sum.en.1:27 lh_source_net.en.1:27 lh_source_tar.en.1:27 -#: lh_source_usb-hdd.en.1:27 lh_source_virtual-hdd.en.1:27 lh_testroot.en.1:27 -#: live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary_chroot.en.1:28 lh_binary_debian-installer.en.1:28 -#: lh_binary_disk.en.1:28 lh_binary.en.1:26 lh_binary_encryption.en.1:28 -#: lh_binary_grub.en.1:28 lh_binary_includes.en.1:28 lh_binary_iso.en.1:28 -#: lh_binary_linux-image.en.1:28 lh_binary_local-hooks.en.1:28 -#: lh_binary_local-includes.en.1:28 lh_binary_local-packageslists.en.1:28 -#: lh_binary_manifest.en.1:28 lh_binary_md5sum.en.1:28 -#: lh_binary_memtest.en.1:28 lh_binary_net.en.1:28 lh_binary_rootfs.en.1:28 -#: lh_binary_silo.en.1:28 lh_binary_syslinux.en.1:28 lh_binary_tar.en.1:28 -#: lh_binary_usb-hdd.en.1:28 lh_binary_virtual-hdd.en.1:28 -#: lh_binary_win32-loader.en.1:28 lh_binary_yaboot.en.1:28 -#: lh_bootstrap_cache.en.1:28 lh_bootstrap_cdebootstrap.en.1:30 -#: lh_bootstrap_copy.en.1:30 lh_bootstrap_debootstrap.en.1:30 -#: lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot_apt.en.1:28 -#: lh_chroot_cache.en.1:28 lh_chroot_debianchroot.en.1:28 -#: lh_chroot_devpts.en.1:28 lh_chroot_dpkg.en.1:28 lh_chroot.en.1:26 -#: lh_chroot_hacks.en.1:28 lh_chroot_hooks.en.1:28 lh_chroot_hostname.en.1:28 -#: lh_chroot_hosts.en.1:28 lh_chroot_install-packages.en.1:28 -#: lh_chroot_interactive.en.1:28 lh_chroot_linux-image.en.1:28 -#: lh_chroot_local-hooks.en.1:28 lh_chroot_local-includes.en.1:28 -#: lh_chroot_localization.en.1:28 lh_chroot_local-packages.en.1:28 -#: lh_chroot_local-patches.en.1:28 lh_chroot_local-preseed.en.1:28 -#: lh_chroot_packages.en.1:28 lh_chroot_packageslists.en.1:28 -#: lh_chroot_preseed.en.1:28 lh_chroot_proc.en.1:28 lh_chroot_resolv.en.1:28 -#: lh_chroot_selinuxfs.en.1:28 lh_chroot_sources.en.1:28 -#: lh_chroot_symlinks.en.1:28 lh_chroot_sysfs.en.1:28 -#: lh_chroot_sysvinit.en.1:28 lh_chroot_sysv-rc.en.1:28 -#: lh_chroot_tasks.en.1:28 lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 -#: lh_local.en.1:26 lh_source_debian.en.1:28 lh_source_debian-live.en.1:28 -#: lh_source_disk.en.1:28 lh_source.en.1:26 lh_source_iso.en.1:28 -#: lh_source_md5sum.en.1:28 lh_source_net.en.1:28 lh_source_tar.en.1:28 -#: lh_source_usb-hdd.en.1:28 lh_source_virtual-hdd.en.1:28 lh_testroot.en.1:28 -#: live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary_chroot.en.1:29 lh_binary_debian-installer.en.1:29 -#: lh_binary_disk.en.1:29 lh_binary.en.1:27 lh_binary_encryption.en.1:29 -#: lh_binary_grub.en.1:29 lh_binary_includes.en.1:29 lh_binary_iso.en.1:29 -#: lh_binary_linux-image.en.1:29 lh_binary_local-hooks.en.1:29 -#: lh_binary_local-includes.en.1:29 lh_binary_local-packageslists.en.1:29 -#: lh_binary_manifest.en.1:29 lh_binary_md5sum.en.1:29 -#: lh_binary_memtest.en.1:29 lh_binary_net.en.1:29 lh_binary_rootfs.en.1:29 -#: lh_binary_silo.en.1:29 lh_binary_syslinux.en.1:29 lh_binary_tar.en.1:29 -#: lh_binary_usb-hdd.en.1:29 lh_binary_virtual-hdd.en.1:29 -#: lh_binary_win32-loader.en.1:29 lh_binary_yaboot.en.1:29 -#: lh_bootstrap_cache.en.1:29 lh_bootstrap_cdebootstrap.en.1:31 -#: lh_bootstrap_copy.en.1:31 lh_bootstrap_debootstrap.en.1:31 -#: lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot_apt.en.1:29 -#: lh_chroot_cache.en.1:29 lh_chroot_debianchroot.en.1:29 -#: lh_chroot_devpts.en.1:29 lh_chroot_dpkg.en.1:29 lh_chroot.en.1:27 -#: lh_chroot_hacks.en.1:29 lh_chroot_hooks.en.1:29 lh_chroot_hostname.en.1:29 -#: lh_chroot_hosts.en.1:29 lh_chroot_install-packages.en.1:29 -#: lh_chroot_interactive.en.1:29 lh_chroot_linux-image.en.1:29 -#: lh_chroot_local-hooks.en.1:29 lh_chroot_local-includes.en.1:29 -#: lh_chroot_localization.en.1:29 lh_chroot_local-packages.en.1:29 -#: lh_chroot_local-patches.en.1:29 lh_chroot_local-preseed.en.1:29 -#: lh_chroot_packages.en.1:29 lh_chroot_packageslists.en.1:29 -#: lh_chroot_preseed.en.1:29 lh_chroot_proc.en.1:29 lh_chroot_resolv.en.1:29 -#: lh_chroot_selinuxfs.en.1:29 lh_chroot_sources.en.1:29 -#: lh_chroot_symlinks.en.1:29 lh_chroot_sysfs.en.1:29 -#: lh_chroot_sysvinit.en.1:29 lh_chroot_sysv-rc.en.1:29 -#: lh_chroot_tasks.en.1:29 lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 -#: lh_local.en.1:27 lh_source_debian.en.1:29 lh_source_debian-live.en.1:29 -#: lh_source_disk.en.1:29 lh_source.en.1:27 lh_source_iso.en.1:29 -#: lh_source_md5sum.en.1:29 lh_source_net.en.1:29 lh_source_tar.en.1:29 -#: lh_source_usb-hdd.en.1:29 lh_source_virtual-hdd.en.1:29 lh_testroot.en.1:29 -#: live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: Plain text -#: lh_source_debian.en.1:17 lh_source_debian-live.en.1:17 -#: lh_source_disk.en.1:17 lh_source_iso.en.1:17 lh_source_md5sum.en.1:17 -#: lh_source_net.en.1:17 lh_source_tar.en.1:17 lh_source_usb-hdd.en.1:17 -#: lh_source_virtual-hdd.en.1:17 -msgid "I<lh_source>(1)" -msgstr "" - -# type: TH -#: lh_source_virtual-hdd.en.1:1 -#, no-wrap -msgid "LH_SOURCE_VIRTUAL-HDD" -msgstr "" - -# type: Plain text -#: lh_source_virtual-hdd.en.1:5 -msgid "lh_source_virtual-hdd - build source virtual-hdd image" -msgstr "" - -# type: Plain text -#: lh_source_virtual-hdd.en.1:8 -msgid "B<lh_source_virtual-hdd> [I<live-helper options>]" -msgstr "" - -# type: Plain text -#: lh_source_virtual-hdd.en.1:11 -msgid "" -"lh_source_virtual-hdd is a low-level command (plumbing) of live-helper, the " -"Debian Live tool suite. It builds source virtual-hdd image." -msgstr "" - -# type: Plain text -#: lh_source_virtual-hdd.en.1:14 -msgid "" -"lh_source_virtual-hdd has no specific options but understands all generic " -"live-helper options. See I<live-helper>(7) for a complete list of all " -"generic live-helper options." -msgstr "" diff --git a/manpages/po4a/pot/lh_testroot.en.1.pot b/manpages/po4a/pot/lh_testroot.en.1.pot deleted file mode 100644 index 9f400f65e..000000000 --- a/manpages/po4a/pot/lh_testroot.en.1.pot +++ /dev/null @@ -1,186 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:42+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "2009-02-14" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 -#, no-wrap -msgid "1.0.4" -msgstr "" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 lh_chroot.en.1:3 -#: lh_clean.en.1:3 lh_config.en.1:3 lh.en.1:3 lh_source.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 lh_chroot.en.1:6 -#: lh_clean.en.1:6 lh_config.en.1:6 lh.en.1:6 lh_source.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 lh_chroot.en.1:9 -#: lh_clean.en.1:11 lh_config.en.1:201 lh.en.1:11 lh_source.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary.en.1:12 lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot.en.1:12 -#: lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 lh_source.en.1:12 -#: lh_testroot.en.1:14 live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary.en.1:15 lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot.en.1:15 -#: lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 lh_source.en.1:15 -#: lh_testroot.en.1:17 live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:17 lh_bootstrap.en.1:17 lh_build.en.1:17 lh_chroot.en.1:17 -#: lh_clean.en.1:36 lh_config.en.1:417 lh.en.1:19 lh_source.en.1:17 -#: lh_testroot.en.1:19 -msgid "I<live-helper>(7)" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:19 lh_bootstrap.en.1:19 lh_build.en.1:19 lh_chroot.en.1:19 -#: lh_clean.en.1:38 lh_config.en.1:419 lh_source.en.1:19 lh_testroot.en.1:21 -msgid "This program is a part of live-helper." -msgstr "" - -# type: SH -#: lh_binary.en.1:20 lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot.en.1:20 -#: lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 lh_source.en.1:20 -#: lh_testroot.en.1:22 live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:22 lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot.en.1:22 -#: lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 lh_source.en.1:22 -#: lh_testroot.en.1:24 live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:23 lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot.en.1:23 -#: lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 lh_source.en.1:23 -#: lh_testroot.en.1:25 live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:25 lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot.en.1:25 -#: lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 lh_source.en.1:25 -#: lh_testroot.en.1:27 live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:26 lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot.en.1:26 -#: lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 lh_source.en.1:26 -#: lh_testroot.en.1:28 live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:27 lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot.en.1:27 -#: lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 lh_source.en.1:27 -#: lh_testroot.en.1:29 live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: lh_testroot.en.1:1 -#, no-wrap -msgid "LH_TESTROOT" -msgstr "" - -# type: Plain text -#: lh_testroot.en.1:5 -msgid "lh_testroot - ensure that a system is built as root" -msgstr "" - -# type: Plain text -#: lh_testroot.en.1:8 -msgid "B<lh_testroot> [I<live-helper\\ options>]" -msgstr "" - -# type: Plain text -#: lh_testroot.en.1:11 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: lh_testroot.en.1:13 -msgid "" -"Support for using I<fakeroot>(1) and I<sudo>(8) internally in live-helper " -"itself is still experimental, however, calling a helper yourself with sudo " -"is safe." -msgstr "" - -# type: Plain text -#: lh_testroot.en.1:16 -msgid "" -"lh_testroot has no specific options but understands all generic live-helper " -"options. See I<live-helper>(7) for a complete list of all generic live-" -"helper options." -msgstr "" diff --git a/manpages/po4a/pot/live-helper.en.7.pot b/manpages/po4a/pot/live-helper.en.7.pot deleted file mode 100644 index 5a86c09d2..000000000 --- a/manpages/po4a/pot/live-helper.en.7.pot +++ /dev/null @@ -1,1306 +0,0 @@ -# SOME DESCRIPTIVE TITLE -# Copyright (C) YEAR Free Software Foundation, Inc. -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2009-03-01 12:42+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: ENCODING" - -# type: TH -#: lh_binary.en.1:1 lh_bootstrap.en.1:1 lh_build.en.1:1 lh_chroot.en.1:1 -#: lh_clean.en.1:1 lh_config.en.1:1 lh.en.1:1 lh_source.en.1:1 -#: lh_testroot.en.1:1 live-helper.en.7:1 -#, no-wrap -msgid "live-helper" -msgstr "" - -# type: SH -#: lh_binary.en.1:3 lh_bootstrap.en.1:3 lh_build.en.1:3 lh_chroot.en.1:3 -#: lh_clean.en.1:3 lh_config.en.1:3 lh.en.1:3 lh_source.en.1:3 -#: lh_testroot.en.1:3 live-helper.en.7:3 -#, no-wrap -msgid "NAME" -msgstr "" - -# type: SH -#: lh_binary.en.1:6 lh_bootstrap.en.1:6 lh_build.en.1:6 lh_chroot.en.1:6 -#: lh_clean.en.1:6 lh_config.en.1:6 lh.en.1:6 lh_source.en.1:6 -#: lh_testroot.en.1:6 live-helper.en.7:6 -#, no-wrap -msgid "SYNOPSIS" -msgstr "" - -# type: SH -#: lh_binary.en.1:9 lh_bootstrap.en.1:9 lh_build.en.1:9 lh_chroot.en.1:9 -#: lh_clean.en.1:11 lh_config.en.1:201 lh.en.1:11 lh_source.en.1:9 -#: lh_testroot.en.1:9 live-helper.en.7:13 -#, no-wrap -msgid "DESCRIPTION" -msgstr "" - -# type: SH -#: lh_binary.en.1:12 lh_bootstrap.en.1:12 lh_build.en.1:12 lh_chroot.en.1:12 -#: lh_clean.en.1:14 lh_config.en.1:206 lh.en.1:14 lh_source.en.1:12 -#: lh_testroot.en.1:14 live-helper.en.7:20 -#, no-wrap -msgid "OPTIONS" -msgstr "" - -# type: SH -#: lh_binary.en.1:15 lh_bootstrap.en.1:15 lh_build.en.1:15 lh_chroot.en.1:15 -#: lh_clean.en.1:34 lh_config.en.1:415 lh.en.1:17 lh_source.en.1:15 -#: lh_testroot.en.1:17 live-helper.en.7:229 -#, no-wrap -msgid "SEE ALSO" -msgstr "" - -# type: SH -#: lh_binary.en.1:20 lh_bootstrap.en.1:20 lh_build.en.1:20 lh_chroot.en.1:20 -#: lh_clean.en.1:39 lh_config.en.1:420 lh.en.1:22 lh_source.en.1:20 -#: lh_testroot.en.1:22 live-helper.en.7:232 -#, no-wrap -msgid "HOMEPAGE" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:22 lh_bootstrap.en.1:22 lh_build.en.1:22 lh_chroot.en.1:22 -#: lh_clean.en.1:41 lh_config.en.1:422 lh.en.1:24 lh_source.en.1:22 -#: lh_testroot.en.1:24 live-helper.en.7:234 -msgid "" -"More information about live-helper and the Debian Live project can be found " -"in the homepage at E<lt>I<http://debian-live.alioth.debian.org/>E<gt> and in " -"the manual at E<lt>I<http://live.debian.net/manual/>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:23 lh_bootstrap.en.1:23 lh_build.en.1:23 lh_chroot.en.1:23 -#: lh_clean.en.1:42 lh_config.en.1:423 lh.en.1:25 lh_source.en.1:23 -#: lh_testroot.en.1:25 live-helper.en.7:235 -#, no-wrap -msgid "BUGS" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:25 lh_bootstrap.en.1:25 lh_build.en.1:25 lh_chroot.en.1:25 -#: lh_clean.en.1:44 lh_config.en.1:425 lh.en.1:27 lh_source.en.1:25 -#: lh_testroot.en.1:27 live-helper.en.7:237 -msgid "" -"Report bugs by submitting a bugreport for the live-helper package in the " -"Debian Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or write " -"a mail to the mailinglist at E<lt>I<debian-live@lists.debian.org>E<gt>." -msgstr "" - -# type: SH -#: lh_binary.en.1:26 lh_bootstrap.en.1:26 lh_build.en.1:26 lh_chroot.en.1:26 -#: lh_clean.en.1:45 lh_config.en.1:426 lh.en.1:28 lh_source.en.1:26 -#: lh_testroot.en.1:28 live-helper.en.7:238 -#, no-wrap -msgid "AUTHOR" -msgstr "" - -# type: Plain text -#: lh_binary.en.1:27 lh_bootstrap.en.1:27 lh_build.en.1:27 lh_chroot.en.1:27 -#: lh_clean.en.1:46 lh_config.en.1:427 lh.en.1:29 lh_source.en.1:27 -#: lh_testroot.en.1:29 live-helper.en.7:239 -msgid "" -"live-helper was written by Daniel Baumann E<lt>I<daniel@debian.org>E<gt> for " -"the Debian project." -msgstr "" - -# type: TH -#: live-helper.en.7:1 -#, no-wrap -msgid "LIVE-HELPER" -msgstr "" - -# type: TH -#: live-helper.en.7:1 -#, no-wrap -msgid "2009-01-23" -msgstr "" - -# type: TH -#: live-helper.en.7:1 -#, no-wrap -msgid "1.0.2" -msgstr "" - -# type: Plain text -#: live-helper.en.7:5 -msgid "live-helper - the Debian Live tool suite" -msgstr "" - -# type: Plain text -#: live-helper.en.7:8 -msgid "" -"B<lh >I<COMMAND> [B<-h|--help>] [B<-u|--usage>] [B<-v|--version>] [B<--" -"breakpoints>] [B<--conffile>] [B<--debug>] [B<--force>] [B<--quiet>] [B<--" -"verbose>]" -msgstr "" - -# type: Plain text -#: live-helper.en.7:10 -msgid "or" -msgstr "" - -# type: Plain text -#: live-helper.en.7:12 -msgid "" -"B<lh_>I<COMMAND> [B<-h|--help>] [B<-u|--usage>] [B<-v|--version>] [B<--" -"breakpoints>] [B<--conffile>] [B<--debug>] [B<--force>] [B<--quiet>] [B<--" -"verbose>]" -msgstr "" - -# type: Plain text -#: live-helper.en.7:15 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: live-helper.en.7:17 -msgid "The I<COMMAND> is a name of a live-helper command (see below)." -msgstr "" - -# type: Plain text -#: live-helper.en.7:19 -msgid "" -"More documentation about how to use live-helper is available in the " -"individual manpages for each helper and in the manual at E<lt>I<http://live." -"debian.net/manual/>E<gt>." -msgstr "" - -# type: SS -#: live-helper.en.7:21 -#, no-wrap -msgid "Shared live-helper options" -msgstr "" - -# type: Plain text -#: live-helper.en.7:23 -msgid "" -"The following command line options are supported by all live-helper programs." -msgstr "" - -# type: IP -#: live-helper.en.7:23 -#, no-wrap -msgid "B<-h, --help>" -msgstr "" - -# type: Plain text -#: live-helper.en.7:25 -msgid "display help and exit." -msgstr "" - -# type: IP -#: live-helper.en.7:25 -#, no-wrap -msgid "B<-u, --usage>" -msgstr "" - -# type: Plain text -#: live-helper.en.7:27 -msgid "show usage and exit." -msgstr "" - -# type: IP -#: live-helper.en.7:27 -#, no-wrap -msgid "B<-v, --version>" -msgstr "" - -# type: Plain text -#: live-helper.en.7:29 -msgid "output version information and exit." -msgstr "" - -# type: SS -#: live-helper.en.7:29 -#, no-wrap -msgid "Common live-helper options" -msgstr "" - -# type: Plain text -#: live-helper.en.7:31 -msgid "" -"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." -msgstr "" - -# type: IP -#: live-helper.en.7:31 -#, no-wrap -msgid "B<--breakpoints>" -msgstr "" - -# type: Plain text -#: live-helper.en.7:33 -msgid "run with breakpoints." -msgstr "" - -# type: IP -#: live-helper.en.7:33 -#, no-wrap -msgid "B<--conffile>" -msgstr "" - -# type: Plain text -#: live-helper.en.7:35 -msgid "use custom configuration file." -msgstr "" - -# type: IP -#: live-helper.en.7:35 -#, no-wrap -msgid "B<--debug>" -msgstr "" - -# type: Plain text -#: live-helper.en.7:37 -msgid "show debug information." -msgstr "" - -# type: IP -#: live-helper.en.7:37 -#, no-wrap -msgid "B<--force>" -msgstr "" - -# type: Plain text -#: live-helper.en.7:39 -msgid "force helper execution, even if stage file exists." -msgstr "" - -# type: IP -#: live-helper.en.7:39 -#, no-wrap -msgid "B<--quiet>" -msgstr "" - -# type: Plain text -#: live-helper.en.7:41 -msgid "be quiet." -msgstr "" - -# type: IP -#: live-helper.en.7:41 -#, no-wrap -msgid "B<--verbose>" -msgstr "" - -# type: Plain text -#: live-helper.en.7:43 -msgid "be verbose." -msgstr "" - -# type: Plain text -#: live-helper.en.7:45 -msgid "" -"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." -msgstr "" - -# type: SH -#: live-helper.en.7:46 -#, no-wrap -msgid "LIVE-HELPER COMMANDS" -msgstr "" - -# type: Plain text -#: live-helper.en.7:48 -msgid "" -"We divide live-helper into high level (\"porcelain\") commands and low level " -"(\"plumbing\") commands." -msgstr "" - -# type: Plain text -#: live-helper.en.7:51 -msgid "" -"Here is the complete list of all available live-helper commands. See their " -"man pages for additional documentation." -msgstr "" - -# type: SH -#: live-helper.en.7:52 -#, no-wrap -msgid "HIGH-LEVEL COMMANDS (PORCELAIN)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:54 -msgid "" -"We separate the porcelain commands into the main commands and some ancillary " -"user utilities." -msgstr "" - -# type: SS -#: live-helper.en.7:54 -#, no-wrap -msgid "Main porcelain commands" -msgstr "" - -# type: IP -#: live-helper.en.7:55 -#, no-wrap -msgid "B<lh_config>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:57 -msgid "create configuration for live-helper" -msgstr "" - -# type: IP -#: live-helper.en.7:57 -#, no-wrap -msgid "B<lh_bootstrap>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:59 -msgid "create the first stage by bootstrapping a basic debian system" -msgstr "" - -# type: IP -#: live-helper.en.7:59 -#, no-wrap -msgid "B<lh_chroot>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:61 -msgid "create the second stage by customizing the chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:61 -#, no-wrap -msgid "B<lh_binary>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:63 -msgid "create the third stage by generating a binary image" -msgstr "" - -# type: IP -#: live-helper.en.7:63 -#, no-wrap -msgid "B<lh_source>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:65 -msgid "create the optional fourth stage by generating a source image" -msgstr "" - -# type: IP -#: live-helper.en.7:65 -#, no-wrap -msgid "B<lh_clean>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:67 -msgid "clean up system build directories" -msgstr "" - -# type: SS -#: live-helper.en.7:67 -#, no-wrap -msgid "Ancillary Commands" -msgstr "" - -# type: IP -#: live-helper.en.7:68 -#, no-wrap -msgid "B<lh>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:70 -msgid "generic live-helper wrapper" -msgstr "" - -# type: IP -#: live-helper.en.7:70 -#, no-wrap -msgid "B<lh_build>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:72 -msgid "alias for all stages" -msgstr "" - -# type: IP -#: live-helper.en.7:72 -#, no-wrap -msgid "B<lh_local>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:74 -msgid "helper for using a local live-helper" -msgstr "" - -# type: IP -#: live-helper.en.7:74 -#, no-wrap -msgid "B<lh_testroot>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:76 -msgid "ensure that a system is built as root" -msgstr "" - -# type: SH -#: live-helper.en.7:77 -#, no-wrap -msgid "LOW-LEVEL COMMANDS (PLUMBING)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:79 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: live-helper.en.7:81 -msgid "" -"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." -msgstr "" - -# type: SS -#: live-helper.en.7:81 -#, no-wrap -msgid "Bootstrap commands" -msgstr "" - -# type: IP -#: live-helper.en.7:82 -#, no-wrap -msgid "B<lh_bootstrap_cache>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:84 -msgid "cache bootstrap stage" -msgstr "" - -# type: IP -#: live-helper.en.7:84 -#, no-wrap -msgid "B<lh_bootstrap_cdebootstrap>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:86 -msgid "bootstrap a Debian system with cdebootstrap(1)" -msgstr "" - -# type: IP -#: live-helper.en.7:86 -#, no-wrap -msgid "B<lh_bootstrap_copy>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:88 -msgid "bootstrap by copying the host system" -msgstr "" - -# type: IP -#: live-helper.en.7:88 -#, no-wrap -msgid "B<lh_bootstrap_debootstrap>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:90 -msgid "bootstrap a Debian system with debootstrap(8)" -msgstr "" - -# type: SS -#: live-helper.en.7:90 -#, no-wrap -msgid "Chroot commands" -msgstr "" - -# type: IP -#: live-helper.en.7:91 -#, no-wrap -msgid "B<lh_chroot_apt>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:93 -msgid "manage /etc/apt/apt.conf" -msgstr "" - -# type: IP -#: live-helper.en.7:93 -#, no-wrap -msgid "B<lh_chroot_cache>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:95 -msgid "cache chroot stage" -msgstr "" - -# type: IP -#: live-helper.en.7:95 -#, no-wrap -msgid "B<lh_chroot_debianchroot>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:97 -msgid "manage /etc/debian_chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:97 -#, no-wrap -msgid "B<lh_chroot_devpts>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:99 -msgid "mount /dev/pts" -msgstr "" - -# type: IP -#: live-helper.en.7:99 -#, no-wrap -msgid "B<lh_chroot_dpkg>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:101 -msgid "manage /sbin/dpkg" -msgstr "" - -# type: IP -#: live-helper.en.7:101 -#, no-wrap -msgid "B<lh_chroot_hacks>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:103 -msgid "execute hacks in chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:103 -#, no-wrap -msgid "B<lh_chroot_hooks>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:105 -msgid "execute hooks in chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:105 -#, no-wrap -msgid "B<lh_chroot_hostname>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:107 -msgid "manage /bin/hostname" -msgstr "" - -# type: IP -#: live-helper.en.7:107 -#, no-wrap -msgid "B<lh_chroot_hosts>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:109 -msgid "manage /etc/hosts" -msgstr "" - -# type: IP -#: live-helper.en.7:109 -#, no-wrap -msgid "B<lh_chroot_install-packages>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:111 -msgid "install queued packages into chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:111 -#, no-wrap -msgid "B<lh_chroot_interactive>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:113 -msgid "make build interactive" -msgstr "" - -# type: IP -#: live-helper.en.7:113 -#, no-wrap -msgid "B<lh_chroot_linux-image>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:115 -msgid "manage /etc/kernel-img.conf" -msgstr "" - -# type: IP -#: live-helper.en.7:115 -#, no-wrap -msgid "B<lh_chroot_local-hooks>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:117 -msgid "execute local hooks in chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:117 -#, no-wrap -msgid "B<lh_chroot_local-includes>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:119 -msgid "copy local files into chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:119 -#, no-wrap -msgid "B<lh_chroot_localization>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:121 -msgid "install localization packages into chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:121 -#, no-wrap -msgid "B<lh_chroot_local-packages>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:123 -msgid "queue install of local packages into chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:123 -#, no-wrap -msgid "B<lh_chroot_local-patches>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:125 -msgid "apply local patches against chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:125 -#, no-wrap -msgid "B<lh_chroot_local-preseed>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:127 -msgid "use debconf local preseeding file" -msgstr "" - -# type: IP -#: live-helper.en.7:127 -#, no-wrap -msgid "B<lh_chroot_packages>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:129 -msgid "queue install of packages into chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:129 -#, no-wrap -msgid "B<lh_chroot_packageslists>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:131 -msgid "queue install of packages lists into chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:131 -#, no-wrap -msgid "B<lh_chroot_preseed>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:133 -msgid "use debconf preseeding file" -msgstr "" - -# type: IP -#: live-helper.en.7:133 -#, no-wrap -msgid "B<lh_chroot_proc>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:135 -msgid "mount /proc" -msgstr "" - -# type: IP -#: live-helper.en.7:135 -#, no-wrap -msgid "B<lh_chroot_resolv>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:137 -msgid "manage /etc/resolv.conf" -msgstr "" - -# type: IP -#: live-helper.en.7:137 -#, no-wrap -msgid "B<lh_chroot_selinuxfs>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:139 -msgid "mount /selinux" -msgstr "" - -# type: IP -#: live-helper.en.7:139 -#, no-wrap -msgid "B<lh_chroot_sources>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:141 -msgid "manage /etc/apt/sources.list" -msgstr "" - -# type: IP -#: live-helper.en.7:141 -#, no-wrap -msgid "B<lh_chroot_symlinks>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:143 -msgid "convert symlinks" -msgstr "" - -# type: IP -#: live-helper.en.7:143 -#, no-wrap -msgid "B<lh_chroot_sysfs>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:145 -msgid "mount /sys" -msgstr "" - -# type: IP -#: live-helper.en.7:145 -#, no-wrap -msgid "B<lh_chroot_sysvinit>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:147 -msgid "configure sysvinit" -msgstr "" - -# type: IP -#: live-helper.en.7:147 -#, no-wrap -msgid "B<lh_chroot_sysv-rc>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:149 -msgid "manage /usr/sbin/policy-rc.d" -msgstr "" - -# type: IP -#: live-helper.en.7:149 -#, no-wrap -msgid "B<lh_chroot_tasks>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:151 -msgid "install tasks into chroot" -msgstr "" - -# type: SS -#: live-helper.en.7:151 -#, no-wrap -msgid "Binary commands" -msgstr "" - -# type: IP -#: live-helper.en.7:152 -#, no-wrap -msgid "B<lh_binary_chroot>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:154 -msgid "copy chroot into chroot" -msgstr "" - -# type: IP -#: live-helper.en.7:154 -#, no-wrap -msgid "B<lh_binary_debian-installer>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:156 -msgid "install debian-installer into binary" -msgstr "" - -# type: IP -#: live-helper.en.7:156 -#, no-wrap -msgid "B<lh_binary_disk>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:158 -msgid "install disk information into binary" -msgstr "" - -# type: IP -#: live-helper.en.7:158 -#, no-wrap -msgid "B<lh_binary_encryption>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:160 -msgid "encrypts rootfs" -msgstr "" - -# type: IP -#: live-helper.en.7:160 -#, no-wrap -msgid "B<lh_binary_grub>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:162 -msgid "installs grub into binary" -msgstr "" - -# type: IP -#: live-helper.en.7:162 -#, no-wrap -msgid "B<lh_binary_includes>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:164 live-helper.en.7:172 -msgid "copy files into binary" -msgstr "" - -# type: IP -#: live-helper.en.7:164 -#, no-wrap -msgid "B<lh_binary_iso>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:166 -msgid "build iso binary image" -msgstr "" - -# type: IP -#: live-helper.en.7:166 -#, no-wrap -msgid "B<lh_binary_linux-image>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:168 -msgid "install linux-image into binary" -msgstr "" - -# type: IP -#: live-helper.en.7:168 -#, no-wrap -msgid "B<lh_binary_local-hooks>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:170 -msgid "execute local hooks in binary" -msgstr "" - -# type: IP -#: live-helper.en.7:170 -#, no-wrap -msgid "B<lh_binary_local-includes>(1)" -msgstr "" - -# type: IP -#: live-helper.en.7:172 -#, no-wrap -msgid "B<lh_binary_local-packageslists>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:174 -msgid "install local packages lists into binary" -msgstr "" - -# type: IP -#: live-helper.en.7:174 -#, no-wrap -msgid "B<lh_binary_manifest>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:176 -msgid "create manifest" -msgstr "" - -# type: IP -#: live-helper.en.7:176 -#, no-wrap -msgid "B<lh_binary_md5sum>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:178 -msgid "create binary md5sums" -msgstr "" - -# type: IP -#: live-helper.en.7:178 -#, no-wrap -msgid "B<lh_binary_memtest>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:180 -msgid "installs a memtest into binary" -msgstr "" - -# type: IP -#: live-helper.en.7:180 -#, no-wrap -msgid "B<lh_binary_net>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:182 -msgid "build netboot binary image" -msgstr "" - -# type: IP -#: live-helper.en.7:182 -#, no-wrap -msgid "B<lh_binary_rootfs>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:184 -msgid "build rootfs image" -msgstr "" - -# type: IP -#: live-helper.en.7:184 -#, no-wrap -msgid "B<lh_binary_silo>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:186 -msgid "installs silo into binary" -msgstr "" - -# type: IP -#: live-helper.en.7:186 -#, no-wrap -msgid "B<lh_binary_syslinux>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:188 -msgid "installs syslinux into binary" -msgstr "" - -# type: IP -#: live-helper.en.7:188 -#, no-wrap -msgid "B<lh_binary_tar>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:190 -msgid "build harddisk binary image" -msgstr "" - -# type: IP -#: live-helper.en.7:190 -#, no-wrap -msgid "B<lh_binary_usb-hdd>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:192 -msgid "build binary usb-hdd image" -msgstr "" - -# type: IP -#: live-helper.en.7:192 -#, no-wrap -msgid "B<lh_binary_virtual-hdd>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:194 -msgid "build binary virtual-hdd image" -msgstr "" - -# type: IP -#: live-helper.en.7:194 -#, no-wrap -msgid "B<lh_binary_win32-loader>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:196 -msgid "installs win32-loader into binary" -msgstr "" - -# type: IP -#: live-helper.en.7:196 -#, no-wrap -msgid "B<lh_binary_yaboot>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:198 -msgid "installs yaboot into binary" -msgstr "" - -# type: SS -#: live-helper.en.7:198 -#, no-wrap -msgid "Source commands" -msgstr "" - -# type: IP -#: live-helper.en.7:199 -#, no-wrap -msgid "B<lh_source_debian>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:201 -msgid "download sources" -msgstr "" - -# type: IP -#: live-helper.en.7:201 -#, no-wrap -msgid "B<lh_source_debian-live>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:203 -msgid "copy debian-live config into source" -msgstr "" - -# type: IP -#: live-helper.en.7:203 -#, no-wrap -msgid "B<lh_source_disk>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:205 -msgid "install disk information into source" -msgstr "" - -# type: IP -#: live-helper.en.7:205 -#, no-wrap -msgid "B<lh_source_iso>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:207 -msgid "build iso source image" -msgstr "" - -# type: IP -#: live-helper.en.7:207 -#, no-wrap -msgid "B<lh_source_md5sum>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:209 -msgid "create source md5sum" -msgstr "" - -# type: IP -#: live-helper.en.7:209 -#, no-wrap -msgid "B<lh_source_net>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:211 -msgid "build source net image" -msgstr "" - -# type: IP -#: live-helper.en.7:211 -#, no-wrap -msgid "B<lh_source_tar>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:213 -msgid "build source tarball" -msgstr "" - -# type: IP -#: live-helper.en.7:213 -#, no-wrap -msgid "B<lh_source_usb-hdd>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:215 -msgid "build source usb-hdd image" -msgstr "" - -# type: IP -#: live-helper.en.7:215 -#, no-wrap -msgid "B<lh_source_virtual-hdd>(1)" -msgstr "" - -# type: Plain text -#: live-helper.en.7:217 -msgid "build source virtual-hdd image" -msgstr "" - -# type: SH -#: live-helper.en.7:218 -#, no-wrap -msgid "CONFIG FILES" -msgstr "" - -# type: Plain text -#: live-helper.en.7:220 -msgid "" -"Many live-helper commands make use of files in the I<config/> directory to " -"control what they do. Besides the common I<config/common>, 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)." -msgstr "" - -# type: Plain text -#: live-helper.en.7:222 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: live-helper.en.7:224 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: live-helper.en.7:226 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: live-helper.en.7:228 -msgid "" -"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." -msgstr "" - -# type: Plain text -#: live-helper.en.7:231 -msgid "I<live-initramfs>(7)" -msgstr "" diff --git a/manpages/pot/lh.1.pot b/manpages/pot/lh.1.pot new file mode 100644 index 000000000..faf89987d --- /dev/null +++ b/manpages/pot/lh.1.pot @@ -0,0 +1,721 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<lh> - 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<lh> COMMAND [COMMAND_OPTIONS]" +msgstr "" + +#. type: Plain text +#: en/lh.1:10 +msgid "B<lh> [I<live-helper\\ options>]" +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<lh> is a high-level command (porcelain) of I<live-helper>(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<lh> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" diff --git a/manpages/pot/lh_binary.1.pot b/manpages/pot/lh_binary.1.pot new file mode 100644 index 000000000..4cb31417c --- /dev/null +++ b/manpages/pot/lh_binary.1.pot @@ -0,0 +1,723 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:5 +msgid "B<lh binary> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:8 +msgid "B<lh binary> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:11 +msgid "" +"B<lh binary> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary.1:13 +msgid "" +"B<lh binary> 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<lh binary> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(7) for a complete list of all generic live-" +"helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_checksums.1.pot b/manpages/pot/lh_binary_checksums.1.pot new file mode 100644 index 000000000..e2caf142b --- /dev/null +++ b/manpages/pot/lh_binary_checksums.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:5 +msgid "B<lh binary_checksums> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:8 +msgid "B<lh binary_checksums> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:11 +msgid "" +"B<lh binary_checksums> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_checksums.1:16 +msgid "" +"B<lh binary_checksums> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(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<n/a>" +msgstr "" diff --git a/manpages/pot/lh_binary_chroot.1.pot b/manpages/pot/lh_binary_chroot.1.pot new file mode 100644 index 000000000..ab8e406a3 --- /dev/null +++ b/manpages/pot/lh_binary_chroot.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:5 +msgid "B<lh binary_chroot> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:8 +msgid "B<lh binary_chroot> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:11 +msgid "" +"B<lh binary_chroot> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_chroot.1:16 +msgid "" +"B<lh binary_chroot> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_debian-installer.1.pot b/manpages/pot/lh_binary_debian-installer.1.pot new file mode 100644 index 000000000..b8d76e516 --- /dev/null +++ b/manpages/pot/lh_binary_debian-installer.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:5 +msgid "B<lh binary_debian-installer> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:8 +msgid "B<lh binary_debian-installer> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:11 +msgid "" +"B<lh binary_debian-installer> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_debian-installer.1:16 +msgid "" +"B<lh binary_debian-installer> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_disk.1.pot b/manpages/pot/lh_binary_disk.1.pot new file mode 100644 index 000000000..9eb8b02c3 --- /dev/null +++ b/manpages/pot/lh_binary_disk.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:5 +msgid "B<lh binary_disk> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:8 +msgid "B<lh binary_disk> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:11 +msgid "" +"B<lh binary_disk> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_disk.1:16 +msgid "" +"B<lh binary_disk> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_encryption.1.pot b/manpages/pot/lh_binary_encryption.1.pot new file mode 100644 index 000000000..c2675557a --- /dev/null +++ b/manpages/pot/lh_binary_encryption.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:5 +msgid "B<lh binary_encryption> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:8 +msgid "B<lh binary_encryption> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:11 +msgid "" +"B<lh binary_encryption> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_encryption.1:16 +msgid "" +"B<lh binary_encryption> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_grub.1.pot b/manpages/pot/lh_binary_grub.1.pot new file mode 100644 index 000000000..fed603d97 --- /dev/null +++ b/manpages/pot/lh_binary_grub.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:5 +msgid "B<lh binary_grub> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:8 +msgid "B<lh binary_grub> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:11 +msgid "" +"B<lh binary_grub> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub.1:16 +msgid "" +"B<lh binary_grub> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_grub2.1.pot b/manpages/pot/lh_binary_grub2.1.pot new file mode 100644 index 000000000..83b26a9ec --- /dev/null +++ b/manpages/pot/lh_binary_grub2.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:5 +msgid "B<lh binary_grub2> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:8 +msgid "B<lh binary_grub2> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:11 +msgid "" +"B<lh binary_grub2> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_grub2.1:16 +msgid "" +"B<lh binary_grub2> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_includes.1.pot b/manpages/pot/lh_binary_includes.1.pot new file mode 100644 index 000000000..4d83275c5 --- /dev/null +++ b/manpages/pot/lh_binary_includes.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:5 +msgid "B<lh binary_includes> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:8 +msgid "B<lh binary_includes> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:11 +msgid "" +"B<lh binary_includes> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_includes.1:16 +msgid "" +"B<lh binary_includes> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_iso.1.pot b/manpages/pot/lh_binary_iso.1.pot new file mode 100644 index 000000000..0cde02375 --- /dev/null +++ b/manpages/pot/lh_binary_iso.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:5 +msgid "B<lh binary_iso> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:8 +msgid "B<lh binary_iso> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:11 +msgid "" +"B<lh binary_iso> is a low-level command (plumbing) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_iso.1:16 +msgid "" +"B<lh binary_iso> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_linux-image.1.pot b/manpages/pot/lh_binary_linux-image.1.pot new file mode 100644 index 000000000..b611feb0c --- /dev/null +++ b/manpages/pot/lh_binary_linux-image.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:5 +msgid "B<lh binary_linux-image> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:8 +msgid "B<lh binary_linux-image> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:11 +msgid "" +"B<lh binary_linux-image> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_linux-image.1:16 +msgid "" +"B<lh binary_linux-image> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_local-hooks.1.pot b/manpages/pot/lh_binary_local-hooks.1.pot new file mode 100644 index 000000000..d77084f85 --- /dev/null +++ b/manpages/pot/lh_binary_local-hooks.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:5 +msgid "B<lh binary_local-hooks> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:8 +msgid "B<lh binary_local-hooks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:11 +msgid "" +"B<lh binary_local-hooks> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-hooks.1:16 +msgid "" +"B<lh binary_local-hooks> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_local-includes.1.pot b/manpages/pot/lh_binary_local-includes.1.pot new file mode 100644 index 000000000..1ba05dbb5 --- /dev/null +++ b/manpages/pot/lh_binary_local-includes.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:5 +msgid "B<lh binary_local-includes> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:8 +msgid "B<lh binary_local-includes> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:11 +msgid "" +"B<lh binary_local-includes> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-includes.1:16 +msgid "" +"B<lh binary_local-includes> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_local-packageslists.1.pot b/manpages/pot/lh_binary_local-packageslists.1.pot new file mode 100644 index 000000000..fad6af3d9 --- /dev/null +++ b/manpages/pot/lh_binary_local-packageslists.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:5 +msgid "B<lh binary_local-packageslists> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:8 +msgid "B<lh binary_local-packageslists> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:11 +msgid "" +"B<lh binary_local-packageslists> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_local-packageslists.1:16 +msgid "" +"B<lh binary_local-packageslists> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_manifest.1.pot b/manpages/pot/lh_binary_manifest.1.pot new file mode 100644 index 000000000..017a6f7d4 --- /dev/null +++ b/manpages/pot/lh_binary_manifest.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:5 +msgid "B<lh binary_manifest> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:8 +msgid "B<lh binary_manifest> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:11 +msgid "" +"B<lh binary_manifest> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_manifest.1:16 +msgid "" +"B<lh binary_manifest> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_memtest.1.pot b/manpages/pot/lh_binary_memtest.1.pot new file mode 100644 index 000000000..906fa20cf --- /dev/null +++ b/manpages/pot/lh_binary_memtest.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:5 +msgid "B<lh binary_memtest> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:8 +msgid "B<lh binary_memtest> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:11 +msgid "" +"B<lh binary_memtest> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_memtest.1:16 +msgid "" +"B<lh binary_memtest> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_net.1.pot b/manpages/pot/lh_binary_net.1.pot new file mode 100644 index 000000000..d901ef36c --- /dev/null +++ b/manpages/pot/lh_binary_net.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:5 +msgid "B<lh binary_net> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:8 +msgid "B<lh binary_net> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:11 +msgid "" +"B<lh binary_net> is a low-level command (plumbing) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_net.1:16 +msgid "" +"B<lh binary_net> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_rootfs.1.pot b/manpages/pot/lh_binary_rootfs.1.pot new file mode 100644 index 000000000..34e765306 --- /dev/null +++ b/manpages/pot/lh_binary_rootfs.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:5 +msgid "B<lh binary_rootfs> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:8 +msgid "B<lh binary_rootfs> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:11 +msgid "" +"B<lh binary_rootfs> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_rootfs.1:16 +msgid "" +"B<lh binary_rootfs> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_silo.1.pot b/manpages/pot/lh_binary_silo.1.pot new file mode 100644 index 000000000..7b6cc681c --- /dev/null +++ b/manpages/pot/lh_binary_silo.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:5 +msgid "B<lh binary_silo> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:8 +msgid "B<lh binary_silo> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:11 +msgid "" +"B<lh binary_silo> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_silo.1:16 +msgid "" +"B<lh binary_silo> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_syslinux.1.pot b/manpages/pot/lh_binary_syslinux.1.pot new file mode 100644 index 000000000..8a74331ea --- /dev/null +++ b/manpages/pot/lh_binary_syslinux.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:5 +msgid "B<lh binary_syslinux> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:8 +msgid "B<lh binary_syslinux> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:11 +msgid "" +"B<lh binary_syslinux> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_syslinux.1:16 +msgid "" +"B<lh binary_syslinux> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_tar.1.pot b/manpages/pot/lh_binary_tar.1.pot new file mode 100644 index 000000000..be9c37bd2 --- /dev/null +++ b/manpages/pot/lh_binary_tar.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:5 +msgid "B<lh binary_tar> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:8 +msgid "B<lh binary_tar> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:11 +msgid "" +"B<lh binary_tar> is a low-level command (plumbing) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_tar.1:16 +msgid "" +"B<lh binary_tar> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_usb.1.pot b/manpages/pot/lh_binary_usb.1.pot new file mode 100644 index 000000000..50f66142f --- /dev/null +++ b/manpages/pot/lh_binary_usb.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:5 +msgid "B<lh binary_usb> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:8 +msgid "B<lh binary_usb> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:11 +msgid "" +"B<lh binary_usb> is a low-level command (plumbing) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_usb.1:16 +msgid "" +"B<lh binary_usb> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_virtual-hdd.1.pot b/manpages/pot/lh_binary_virtual-hdd.1.pot new file mode 100644 index 000000000..1f7c04bdb --- /dev/null +++ b/manpages/pot/lh_binary_virtual-hdd.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:5 +msgid "B<lh binary_virtual-hdd> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:8 +msgid "B<lh binary_virtual-hdd> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:11 +msgid "" +"B<lh binary_virtual-hdd> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_virtual-hdd.1:16 +msgid "" +"B<lh binary_virtual-hdd> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_win32-loader.1.pot b/manpages/pot/lh_binary_win32-loader.1.pot new file mode 100644 index 000000000..2cddf77cd --- /dev/null +++ b/manpages/pot/lh_binary_win32-loader.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:5 +msgid "B<lh binary_win32-loader> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:8 +msgid "B<lh binary_win32-loader> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:11 +msgid "" +"B<lh binary_win32-loader> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_win32-loader.1:16 +msgid "" +"B<lh binary_win32-loader> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_binary_yaboot.1.pot b/manpages/pot/lh_binary_yaboot.1.pot new file mode 100644 index 000000000..8f1de69de --- /dev/null +++ b/manpages/pot/lh_binary_yaboot.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:5 +msgid "B<lh binary_yaboot> - Complete the binary stage" +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:8 +msgid "B<lh binary_yaboot> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:11 +msgid "" +"B<lh binary_yaboot> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_binary_yaboot.1:16 +msgid "" +"B<lh binary_yaboot> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_bootstrap.1.pot b/manpages/pot/lh_bootstrap.1.pot new file mode 100644 index 000000000..8b9fad096 --- /dev/null +++ b/manpages/pot/lh_bootstrap.1.pot @@ -0,0 +1,723 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:5 +msgid "B<lh bootstrap > - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:8 +msgid "B<lh bootstrap> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:11 +msgid "" +"B<lh bootstrap> is a high-level command (porcelain) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap.1:13 +msgid "" +"B<lh bootstrap> 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<lh bootstrap> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_bootstrap_cache.1.pot b/manpages/pot/lh_bootstrap_cache.1.pot new file mode 100644 index 000000000..fe01b2b06 --- /dev/null +++ b/manpages/pot/lh_bootstrap_cache.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:5 +msgid "B<lh bootstrap_cache> - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:8 +msgid "B<lh bootstrap_cache> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:11 +msgid "" +"B<lh bootstrap_cache> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cache.1:16 +msgid "" +"B<lh bootstrap_cache> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_bootstrap_cdebootstrap.1.pot b/manpages/pot/lh_bootstrap_cdebootstrap.1.pot new file mode 100644 index 000000000..8d5845cd8 --- /dev/null +++ b/manpages/pot/lh_bootstrap_cdebootstrap.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:5 +msgid "B<lh bootstrap_cdebootstrap> - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:8 +msgid "B<lh bootstrap_cdebootstrap> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:11 +msgid "" +"B<lh bootstrap_cdebootstrap> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_cdebootstrap.1:16 +msgid "" +"B<lh bootstrap_cdebootstrap> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_bootstrap_copy.1.pot b/manpages/pot/lh_bootstrap_copy.1.pot new file mode 100644 index 000000000..d833eb07d --- /dev/null +++ b/manpages/pot/lh_bootstrap_copy.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:5 +msgid "B<lh bootstrap_copy> - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:8 +msgid "B<lh bootstrap_copy> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:11 +msgid "" +"B<lh bootstrap_copy> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_copy.1:16 +msgid "" +"B<lh bootstrap_copy> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_bootstrap_debootstrap.1.pot b/manpages/pot/lh_bootstrap_debootstrap.1.pot new file mode 100644 index 000000000..6b12dba28 --- /dev/null +++ b/manpages/pot/lh_bootstrap_debootstrap.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:5 +msgid "B<lh bootstrap_debootstrap> - Complete the bootstrap stage" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:8 +msgid "B<lh bootstrap_debootstrap> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:11 +msgid "" +"B<lh bootstrap_debootstrap> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_bootstrap_debootstrap.1:16 +msgid "" +"B<lh bootstrap_debootstrap> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_build.1.pot b/manpages/pot/lh_build.1.pot new file mode 100644 index 000000000..9f2e07509 --- /dev/null +++ b/manpages/pot/lh_build.1.pot @@ -0,0 +1,723 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_build.1:5 +msgid "B<lh build> - Complete the bootstrap, chroot, binary, and source stages" +msgstr "" + +#. type: Plain text +#: en/lh_build.1:8 +msgid "B<lh build> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_build.1:11 +msgid "" +"B<lh build> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_build.1:13 +msgid "" +"B<lh build> 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<lh build> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(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<auto/config>" +msgstr "" diff --git a/manpages/pot/lh_chroot.1.pot b/manpages/pot/lh_chroot.1.pot new file mode 100644 index 000000000..3d677879b --- /dev/null +++ b/manpages/pot/lh_chroot.1.pot @@ -0,0 +1,723 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:5 +msgid "B<lh chroot> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:8 +msgid "B<lh chroot> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:11 +msgid "" +"B<lh chroot> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot.1:13 +msgid "" +"B<lh chroot> 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<lh chroot> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(7) for a complete list of all generic live-" +"helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_apt.1.pot b/manpages/pot/lh_chroot_apt.1.pot new file mode 100644 index 000000000..b8dcec924 --- /dev/null +++ b/manpages/pot/lh_chroot_apt.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:5 +msgid "B<lh chroot_apt> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:8 +msgid "B<lh chroot_apt> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:11 +msgid "" +"B<lh chroot_apt> is a low-level command (plumbing) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_apt.1:16 +msgid "" +"B<lh chroot_apt> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_cache.1.pot b/manpages/pot/lh_chroot_cache.1.pot new file mode 100644 index 000000000..8e30ca14d --- /dev/null +++ b/manpages/pot/lh_chroot_cache.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:5 +msgid "B<lh chroot_cache> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:8 +msgid "B<lh chroot_cache> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:11 +msgid "" +"B<lh chroot_cache> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_cache.1:16 +msgid "" +"B<lh chroot_cache> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_debianchroot.1.pot b/manpages/pot/lh_chroot_debianchroot.1.pot new file mode 100644 index 000000000..d35b7b136 --- /dev/null +++ b/manpages/pot/lh_chroot_debianchroot.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:5 +msgid "B<lh chroot_debianchroot> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:8 +msgid "B<lh chroot_debianchroot> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:11 +msgid "" +"B<lh chroot_debianchroot> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_debianchroot.1:16 +msgid "" +"B<lh chroot_debianchroot> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_devpts.1.pot b/manpages/pot/lh_chroot_devpts.1.pot new file mode 100644 index 000000000..7e3515c91 --- /dev/null +++ b/manpages/pot/lh_chroot_devpts.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:5 +msgid "B<lh chroot_devpts> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:8 +msgid "B<lh chroot_devpts> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:11 +msgid "" +"B<lh chroot_devpts> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_devpts.1:16 +msgid "" +"B<lh chroot_devpts> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_dpkg.1.pot b/manpages/pot/lh_chroot_dpkg.1.pot new file mode 100644 index 000000000..5fe597050 --- /dev/null +++ b/manpages/pot/lh_chroot_dpkg.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:5 +msgid "B<lh chroot_dpkg> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:8 +msgid "B<lh chroot_dpkg> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:11 +msgid "" +"B<lh chroot_dpkg> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_dpkg.1:16 +msgid "" +"B<lh chroot_dpkg> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_hacks.1.pot b/manpages/pot/lh_chroot_hacks.1.pot new file mode 100644 index 000000000..d6a69a130 --- /dev/null +++ b/manpages/pot/lh_chroot_hacks.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:5 +msgid "B<lh chroot_hacks> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:8 +msgid "B<lh chroot_hacks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:11 +msgid "" +"B<lh chroot_hacks> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hacks.1:16 +msgid "" +"B<lh chroot_hacks> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_hooks.1.pot b/manpages/pot/lh_chroot_hooks.1.pot new file mode 100644 index 000000000..72a328fa0 --- /dev/null +++ b/manpages/pot/lh_chroot_hooks.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:5 +msgid "B<lh chroot_hooks> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:8 +msgid "B<lh chroot_hooks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:11 +msgid "" +"B<lh chroot_hooks> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hooks.1:16 +msgid "" +"B<lh chroot_hooks> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_hostname.1.pot b/manpages/pot/lh_chroot_hostname.1.pot new file mode 100644 index 000000000..055e38c47 --- /dev/null +++ b/manpages/pot/lh_chroot_hostname.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:5 +msgid "B<lh chroot_hostname> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:8 +msgid "B<lh chroot_hostname> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:11 +msgid "" +"B<lh chroot_hostname> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hostname.1:16 +msgid "" +"B<lh chroot_hostname> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_hosts.1.pot b/manpages/pot/lh_chroot_hosts.1.pot new file mode 100644 index 000000000..0151d703d --- /dev/null +++ b/manpages/pot/lh_chroot_hosts.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:5 +msgid "B<lh chroot_hosts> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:8 +msgid "B<lh chroot_hosts> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:11 +msgid "" +"B<lh chroot_hosts> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_hosts.1:16 +msgid "" +"B<lh chroot_hosts> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_install-packages.1.pot b/manpages/pot/lh_chroot_install-packages.1.pot new file mode 100644 index 000000000..22f630671 --- /dev/null +++ b/manpages/pot/lh_chroot_install-packages.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:5 +msgid "B<lh chroot_install-packages> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:8 +msgid "B<lh chroot_install-packages> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:11 +msgid "" +"B<lh chroot_install-packages> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_install-packages.1:16 +msgid "" +"B<lh chroot_install-packages> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_interactive.1.pot b/manpages/pot/lh_chroot_interactive.1.pot new file mode 100644 index 000000000..ec26391b6 --- /dev/null +++ b/manpages/pot/lh_chroot_interactive.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:5 +msgid "B<lh chroot_interactive> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:8 +msgid "B<lh chroot_interactive> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:11 +msgid "" +"B<lh chroot_interactive> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_interactive.1:16 +msgid "" +"B<lh chroot_interactive> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_linux-image.1.pot b/manpages/pot/lh_chroot_linux-image.1.pot new file mode 100644 index 000000000..3516861df --- /dev/null +++ b/manpages/pot/lh_chroot_linux-image.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:5 +msgid "B<lh chroot_linux-image> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:8 +msgid "B<lh chroot_linux-image> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:11 +msgid "" +"B<lh chroot_linux-image> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_linux-image.1:16 +msgid "" +"B<lh chroot_linux-image> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_local-hooks.1.pot b/manpages/pot/lh_chroot_local-hooks.1.pot new file mode 100644 index 000000000..9c45ac6f7 --- /dev/null +++ b/manpages/pot/lh_chroot_local-hooks.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:5 +msgid "B<lh chroot_local-hooks> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:8 +msgid "B<lh chroot_local-hooks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:11 +msgid "" +"B<lh chroot_local-hooks> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-hooks.1:16 +msgid "" +"B<lh chroot_local-hooks> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_local-includes.1.pot b/manpages/pot/lh_chroot_local-includes.1.pot new file mode 100644 index 000000000..d8e64dc2f --- /dev/null +++ b/manpages/pot/lh_chroot_local-includes.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:5 +msgid "B<lh chroot_local-includes> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:8 +msgid "B<lh chroot_local-includes> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:11 +msgid "" +"B<lh chroot_local-includes> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-includes.1:16 +msgid "" +"B<lh chroot_local-includes> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_local-packages.1.pot b/manpages/pot/lh_chroot_local-packages.1.pot new file mode 100644 index 000000000..c87b45a83 --- /dev/null +++ b/manpages/pot/lh_chroot_local-packages.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:5 +msgid "B<lh chroot_local-packages> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:8 +msgid "B<lh chroot_local-packages> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:11 +msgid "" +"B<lh chroot_local-packages> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packages.1:16 +msgid "" +"B<lh chroot_local-packages> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_local-packageslists.1.pot b/manpages/pot/lh_chroot_local-packageslists.1.pot new file mode 100644 index 000000000..901256b90 --- /dev/null +++ b/manpages/pot/lh_chroot_local-packageslists.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:5 +msgid "B<lh chroot_local-packageslists> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:8 +msgid "B<lh chroot_local-packageslists> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:11 +msgid "" +"B<lh chroot_local-packageslists> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-packageslists.1:16 +msgid "" +"B<lh chroot_local-packageslists> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_local-patches.1.pot b/manpages/pot/lh_chroot_local-patches.1.pot new file mode 100644 index 000000000..57570b1ef --- /dev/null +++ b/manpages/pot/lh_chroot_local-patches.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:5 +msgid "B<lh chroot_local-patches> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:8 +msgid "B<lh chroot_local-patches> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:11 +msgid "" +"B<lh chroot_local-patches> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-patches.1:16 +msgid "" +"B<lh chroot_local-patches> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_local-preseed.1.pot b/manpages/pot/lh_chroot_local-preseed.1.pot new file mode 100644 index 000000000..b91d3b775 --- /dev/null +++ b/manpages/pot/lh_chroot_local-preseed.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:5 +msgid "B<lh chroot_local-preseed> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:8 +msgid "B<lh chroot_local-preseed> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:11 +msgid "" +"B<lh chroot_local-preseed> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_local-preseed.1:16 +msgid "" +"B<lh chroot_local-preseed> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_localization.1.pot b/manpages/pot/lh_chroot_localization.1.pot new file mode 100644 index 000000000..265bc901c --- /dev/null +++ b/manpages/pot/lh_chroot_localization.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:5 +msgid "B<lh chroot_localization> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:8 +msgid "B<lh chroot_localization> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:11 +msgid "" +"B<lh chroot_localization> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_localization.1:16 +msgid "" +"B<lh chroot_localization> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_packages.1.pot b/manpages/pot/lh_chroot_packages.1.pot new file mode 100644 index 000000000..529d0a7e3 --- /dev/null +++ b/manpages/pot/lh_chroot_packages.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:5 +msgid "B<lh chroot_packages> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:8 +msgid "B<lh chroot_packages> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:11 +msgid "" +"B<lh chroot_packages> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packages.1:16 +msgid "" +"B<lh chroot_packages> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_packageslists.1.pot b/manpages/pot/lh_chroot_packageslists.1.pot new file mode 100644 index 000000000..bc6165372 --- /dev/null +++ b/manpages/pot/lh_chroot_packageslists.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:5 +msgid "B<lh chroot_packageslists> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:8 +msgid "B<lh chroot_packageslists> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:11 +msgid "" +"B<lh chroot_packageslists> is a low-level command (plumbing) of I<live-" +"helper>(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_packageslists.1:16 +msgid "" +"B<lh chroot_packageslists> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_preseed.1.pot b/manpages/pot/lh_chroot_preseed.1.pot new file mode 100644 index 000000000..98a5a2e5a --- /dev/null +++ b/manpages/pot/lh_chroot_preseed.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:5 +msgid "B<lh chroot_preseed> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:8 +msgid "B<lh chroot_preseed> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:11 +msgid "" +"B<lh chroot_preseed> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_preseed.1:16 +msgid "" +"B<lh chroot_preseed> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_proc.1.pot b/manpages/pot/lh_chroot_proc.1.pot new file mode 100644 index 000000000..ec5c22db2 --- /dev/null +++ b/manpages/pot/lh_chroot_proc.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:5 +msgid "B<lh chroot_proc> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:8 +msgid "B<lh chroot_proc> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:11 +msgid "" +"B<lh chroot_proc> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_proc.1:16 +msgid "" +"B<lh chroot_proc> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_resolv.1.pot b/manpages/pot/lh_chroot_resolv.1.pot new file mode 100644 index 000000000..ca42eddcf --- /dev/null +++ b/manpages/pot/lh_chroot_resolv.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:5 +msgid "B<lh chroot_resolv> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:8 +msgid "B<lh chroot_resolv> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:11 +msgid "" +"B<lh chroot_resolv> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_resolv.1:16 +msgid "" +"B<lh chroot_resolv> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_selinuxfs.1.pot b/manpages/pot/lh_chroot_selinuxfs.1.pot new file mode 100644 index 000000000..e3c365de2 --- /dev/null +++ b/manpages/pot/lh_chroot_selinuxfs.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:5 +msgid "B<lh chroot_selinuxfs> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:8 +msgid "B<lh chroot_selinuxfs> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:11 +msgid "" +"B<lh chroot_selinuxfs> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_selinuxfs.1:16 +msgid "" +"B<lh chroot_selinuxfs> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_sources.1.pot b/manpages/pot/lh_chroot_sources.1.pot new file mode 100644 index 000000000..426689ccd --- /dev/null +++ b/manpages/pot/lh_chroot_sources.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:5 +msgid "B<lh chroot_sources> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:8 +msgid "B<lh chroot_sources> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:11 +msgid "" +"B<lh chroot_sources> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sources.1:16 +msgid "" +"B<lh chroot_sources> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_symlinks.1.pot b/manpages/pot/lh_chroot_symlinks.1.pot new file mode 100644 index 000000000..fa9612c4e --- /dev/null +++ b/manpages/pot/lh_chroot_symlinks.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:5 +msgid "B<lh chroot_symlinks> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:8 +msgid "B<lh chroot_symlinks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:11 +msgid "" +"B<lh chroot_symlinks> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_symlinks.1:16 +msgid "" +"B<lh chroot_symlinks> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_sysfs.1.pot b/manpages/pot/lh_chroot_sysfs.1.pot new file mode 100644 index 000000000..93716bd56 --- /dev/null +++ b/manpages/pot/lh_chroot_sysfs.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:5 +msgid "B<lh chroot_sysfs> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:8 +msgid "B<lh chroot_sysfs> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:11 +msgid "" +"B<lh chroot_sysfs> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysfs.1:16 +msgid "" +"B<lh chroot_sysfs> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_sysv-rc.1.pot b/manpages/pot/lh_chroot_sysv-rc.1.pot new file mode 100644 index 000000000..10bbc3af4 --- /dev/null +++ b/manpages/pot/lh_chroot_sysv-rc.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:5 +msgid "B<lh chroot_sysv-rc> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:8 +msgid "B<lh chroot_sysv-rc> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:11 +msgid "" +"B<lh chroot_sysv-rc> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysv-rc.1:16 +msgid "" +"B<lh chroot_sysv-rc> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_sysvinit.1.pot b/manpages/pot/lh_chroot_sysvinit.1.pot new file mode 100644 index 000000000..2c64baed9 --- /dev/null +++ b/manpages/pot/lh_chroot_sysvinit.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:5 +msgid "B<lh chroot_sysvinit> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:8 +msgid "B<lh chroot_sysvinit> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:11 +msgid "" +"B<lh chroot_sysvinit> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_sysvinit.1:16 +msgid "" +"B<lh chroot_sysvinit> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_tasks.1.pot b/manpages/pot/lh_chroot_tasks.1.pot new file mode 100644 index 000000000..96f96a066 --- /dev/null +++ b/manpages/pot/lh_chroot_tasks.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:5 +msgid "B<lh chroot_tasks> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:8 +msgid "B<lh chroot_tasks> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:11 +msgid "" +"B<lh chroot_tasks> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_tasks.1:16 +msgid "" +"B<lh chroot_tasks> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_chroot_upstart.1.pot b/manpages/pot/lh_chroot_upstart.1.pot new file mode 100644 index 000000000..c24298d45 --- /dev/null +++ b/manpages/pot/lh_chroot_upstart.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:5 +msgid "B<lh chroot_upstart> - Complete the chroot stage" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:8 +msgid "B<lh chroot_upstart> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:11 +msgid "" +"B<lh chroot_upstart> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_chroot_upstart.1:16 +msgid "" +"B<lh chroot_upstart> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_clean.1.pot b/manpages/pot/lh_clean.1.pot new file mode 100644 index 000000000..d84a9f0c5 --- /dev/null +++ b/manpages/pot/lh_clean.1.pot @@ -0,0 +1,821 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:5 +msgid "B<lh clean> - Clean build directory" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:8 +msgid "B<lh clean> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_clean.1:11 +msgid "" +"B<lh clean> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. FIXME +#. FIXME +#. type: Plain text +#: en/lh_clean.1:15 +msgid "" +"B<lh clean> 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<lh clean> understands all generic live-" +"helper options. See I<live-helper>(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<auto/clean>" +msgstr "" diff --git a/manpages/pot/lh_config.1.pot b/manpages/pot/lh_config.1.pot new file mode 100644 index 000000000..63d376c52 --- /dev/null +++ b/manpages/pot/lh_config.1.pot @@ -0,0 +1,2680 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_build.1:19 en/lh_config.1:430 +#, no-wrap +msgid "B<auto/config>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:5 +msgid "B<lh config> - Create config directory" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:8 +msgid "B<lh config> [I<live-helper options>]" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:11 +msgid "B<lh config>" +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<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:17 +msgid " [B<--apt-http-proxy> I<URL>]" +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<OPTION>|\"I<OPTIONS>\"]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:23 +msgid " [B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\"]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:25 +msgid " [B<--apt-pipeline> I<DEPTH>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:27 +msgid " [B<--apt-recommends> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:29 +msgid " [B<--apt-secure> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:31 +msgid " [-a|B<--architecture> I<ARCHITECTURE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:33 +msgid " [-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:35 +msgid " [B<--binary-filesystem> fat16|fat32|ext2]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:37 +msgid " [B<--binary-indices> true|false|none]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:39 +msgid " [B<--bootappend-install> I<PARAMETER>|I<\"PARAMETERS\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:41 +msgid " [B<--bootappend-live> I<PARAMETER>|I<\"PARAMETERS\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:43 +msgid " [B<--bootloader> grub|syslinux|yaboot]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:45 +msgid " [B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:47 +msgid " [B<--bootstrap-config> I<FILE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:49 +msgid " [-f|B<--bootstrap-flavour> minimal|standard]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:51 +msgid " [B<--bootstrap-keyring> I<PACKAGE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:53 +msgid " [B<--cache> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:55 +msgid " [B<--cache-indices> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:57 +msgid " [B<--cache-packages> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:59 +msgid " [B<--cache-stages> I<STAGE>|I<\"STAGES\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:61 +msgid " [B<--checksums> md5|sha1|sha256|none]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:63 +msgid " [B<--chroot-build> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:65 +msgid " [B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:67 +msgid " [B<--clean]>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:69 +msgid "B<\t[-c|--conffile> I<FILE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:71 +msgid " [B<--debconf-frontend> dialog|editor|noninteractive|readline]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:73 +msgid " [B<--debconf-nowarnings> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:75 +msgid " [B<--debconf-priority> low|medium|high|critical]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:77 +msgid "" +" [B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:79 +msgid " [B<--debian-installer-distribution> daily|I<CODENAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:81 +msgid " [B<--debian-installer-preseedfile> I<FILE>|I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:83 +msgid " [B<--debian-installer-gui> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:85 +msgid " [-d|B<--distribution> I<CODENAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:87 +msgid " [--B<dump>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:89 +msgid " [-e|B<--encryption> false|aes128|aes192|aes256]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:91 +msgid " [B<--fdisk> fdisk|fdisk.dist]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:93 +msgid " [B<--grub-splash> I<FILE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:95 +msgid " [B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:97 +msgid " [B<--hooks> I<FILE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:99 +msgid " [B<--hostname> I<NAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:101 +msgid " [B<--ignore-system-defaults>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:103 +msgid " [B<--includes> I<PATH>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:105 +msgid " [B<--initramfs> auto|live-initramfs|casper]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:107 +msgid " [B<--interactive> shell]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:109 +msgid " [B<--iso-application> I<NAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:111 +msgid " [B<--iso-preparer> I<NAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:113 +msgid " [B<--iso-publisher> I<NAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:115 +msgid " [B<--iso-volume> I<NAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:117 +msgid " [B<--jffs2-eraseblock> I<SIZE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:119 +msgid " [B<--keyring-packages> I<PACKAGE|\"PACKAGES\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:121 +msgid " [-l|B<--language> I<LANGUAGE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:123 +msgid " [-k|B<--linux-flavours> I<FLAVOUR>|I<\"FLAVOURS\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:125 +msgid " [B<--linux-packages> I<\"PACKAGES\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:127 +msgid " [B<--losetup> losetup|losetup.orig]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:129 +msgid " [B<--memtest> memtest86+|memtest86|none]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:131 +msgid " [-m|B<--mirror-bootstrap> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:133 +msgid " [B<--mirror-binary> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:135 +msgid " [B<--mirror-binary-security> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:137 +msgid " [B<--mirror-chroot> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:139 +msgid " [B<--mirror-chroot-security> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:141 +msgid " [B<--mirror-debian-installer> I<URL>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:143 +msgid " [B<--mode> debian|emdebian|ubuntu]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:145 +msgid " [B<--net-root-filesystem> nfs|cfs]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:147 +msgid " [B<--net-root-mountoptions> I<OPTIONS>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:149 +msgid " [B<--net-root-path> I<PATH>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:151 +msgid " [B<--net-root-server> I<IP>|I<HOSTNAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:153 +msgid " [B<--net-cow-filesystem> nfs|cfs]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:155 +msgid " [B<--net-cow-mountoptions> I<OPTIONS>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:157 +msgid " [B<--net-cow-path> I<PATH>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:159 +msgid " [B<--net-cow-server> I<IP>|I<HOSTNAME>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:161 +msgid " [B<--net-tarball> bzip2|gzip|tar|none]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:163 +msgid " [-p|B<--packages-lists> I<LIST>|I<\"LISTS\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:165 +msgid " [B<--packages> I<PACKAGE>|I<\"PACKAGES\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:167 +msgid " [B<-r, --repositories >I<REPOSITORY>|I<\"REPOSITORIES\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:169 +msgid " [B<--root-command> sudo]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:171 +msgid " [B<--use-fakeroot> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:173 +msgid " [B<--archive-areas> I<ARCHIVE_AREA>|I<\"ARCHIVE_AREAS\">]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:175 +msgid " [B<--security> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:177 +msgid " [B<--source> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:179 +msgid " [-s|B<--source-images> iso|net|tar|usb-hdd]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:181 +msgid " [B<--symlinks> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:183 +msgid " [B<--syslinux-splash> I<FILE>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:185 +msgid " [B<--syslinux-timeout> I<SECONDS>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:187 +msgid " [B<--syslinux-menu> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:189 +msgid " [B<--sysvinit> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:191 +msgid " [B<--tasksel> aptitude|tasksel]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:193 +msgid " [B<--tasks> I<TASK>|\"I<TASKS>\"]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:195 +msgid " [B<--templates> I<PATH>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:197 +msgid " [B<--virtual-root-filesystem> ext3]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:199 +msgid " [B<--virtual-root-size >I<MB>]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:201 +msgid " [B<--exposed-root> true|false]" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:203 +msgid " [B<--username> I<NAME>]" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:206 +msgid " [B<--win32-loader true|false]>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:209 +msgid "" +"B<lh config> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:212 +msgid "" +"B<lh config> populates the configuration directory for live-helper. By " +"default, this directory is named 'config' and is created in the current " +"directory where B<lh config> was executed." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:215 +msgid "" +"Note: Currently B<lh config> 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 B<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 B<lh config> called with one option only changes " +"that option, and leaves everything else as is unless its not defined. " +"However, B<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 B<lh config> again." +msgstr "" + +#. type: Plain text +#: en/lh_config.1:218 +msgid "" +"In addition to its specific options B<lh config> understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" + +#. FIXME +#. type: IP +#: en/lh_config.1:220 +#, no-wrap +msgid "B<--apt> apt|aptitude" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:222 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:222 +#, no-wrap +msgid "B<--apt-ftp-proxy> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:224 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:224 +#, no-wrap +msgid "B<--apt-http-proxy> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:226 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:226 +#, no-wrap +msgid "B<--apt-pdiffs> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:228 +msgid "" +"defines whetever apt should use incremental package indices feature or not. " +"This is true by default." +msgstr "" + +#. type: IP +#: en/lh_config.1:228 +#, no-wrap +msgid "B<--apt-options> I<OPTION>|\"I<OPTIONS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:230 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:230 +#, no-wrap +msgid "B<--aptitude-options> I<OPTION>|\"I<OPTIONS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:232 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:232 +#, no-wrap +msgid "B<--apt-pipeline> I<DEPTH>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:234 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:234 +#, no-wrap +msgid "B<--apt-recommends> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:236 +msgid "" +"defines if apt should install recommended packages automatically. By " +"default, this is true except in emdebian mode." +msgstr "" + +#. type: IP +#: en/lh_config.1:236 +#, no-wrap +msgid "B<--apt-secure> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:238 +msgid "" +"defines if apt should check repository signatures. This is true by default." +msgstr "" + +#. type: IP +#: en/lh_config.1:238 +#, no-wrap +msgid "-a|B<--architecture> I<ARCHITECTURE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:240 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:240 +#, no-wrap +msgid "-b|B<--binary-images> iso|iso-hybrid|net|tar|usb-hdd" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:242 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:242 +#, no-wrap +msgid "B<--binary-filesystem> fat16|fat32|ext2" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:244 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:244 +#, no-wrap +msgid "B<--binary-indices> true|false|none" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:246 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:246 +#, no-wrap +msgid "B<--bootappend-install> I<PARAMETER>|\"I<PARAMETERS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:248 +msgid "sets boot parameters specific to debian-installer, if included." +msgstr "" + +#. type: IP +#: en/lh_config.1:248 +#, no-wrap +msgid "B<--bootappend-live> I<PARAMETER>|\"I<PARAMETERS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:250 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:250 +#, no-wrap +msgid "B<--bootloader> grub|syslinux|yaboot" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:252 +msgid "" +"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. B<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." +msgstr "" + +#. type: IP +#: en/lh_config.1:252 +#, no-wrap +msgid "B<--bootstrap> cdebootstrap|cdebootstrap-static|debootstrap|copy" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:254 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:254 +#, no-wrap +msgid "B<--bootstrap-config> I<FILE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:256 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:256 +#, no-wrap +msgid "-f|B<--bootstrap-flavour> minimal|standard" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:258 +msgid "" +"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)." +msgstr "" + +#. type: IP +#: en/lh_config.1:258 +#, no-wrap +msgid "B<--bootstrap-keyring> I<PACKAGE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:260 +msgid "" +"sets the archive keyring package to be used. Default is debian-archive-" +"keyring." +msgstr "" + +#. type: IP +#: en/lh_config.1:260 +#, no-wrap +msgid "B<--cache> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:262 +msgid "" +"defines globally if any cache should be used at all. Different caches can be " +"controled through the their own options." +msgstr "" + +#. type: IP +#: en/lh_config.1:262 +#, no-wrap +msgid "B<--cache-indices> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:264 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:264 +#, no-wrap +msgid "B<--cache-packages> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:266 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:266 +#, no-wrap +msgid "B<--cache-stages> true|false|I<STAGE>|\"I<STAGES>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:268 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:268 +#, no-wrap +msgid "B<--checksums> md5|sha1|sha256|none" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:270 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:270 +#, no-wrap +msgid "B<--chroot-build> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:272 +msgid "" +"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 B<exactely> match what is present at build-time in " +"the target distribution. Never do disable this option unless you are " +"B<exactely> sure what you are doing and have B<completely>I< understood its " +"consequences.>" +msgstr "" + +#. type: IP +#: en/lh_config.1:272 +#, no-wrap +msgid "B<--chroot-filesystem> ext2|ext3|squashfs|plain|jffs2" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:274 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:274 +#, no-wrap +msgid "B<--clean>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:276 +msgid "" +"minimizes config directory by automatically removing unused and thus empty " +"subdirectories." +msgstr "" + +#. type: IP +#: en/lh_config.1:276 +#, no-wrap +msgid "-c|B<--conffile> I<FILE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:278 +msgid "" +"using a user specified alternative configuration file in addition to the " +"normally used one in the config directory." +msgstr "" + +#. type: IP +#: en/lh_config.1:278 +#, no-wrap +msgid "B<--debconf-frontend> dialog|editor|noninteractive|readline" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:280 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:280 +#, no-wrap +msgid "B<--debconf-nowarnings> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:282 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:282 +#, no-wrap +msgid "B<--debconf-priority> low|medium|high|critical" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:284 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:284 +#, no-wrap +msgid "B<--debian-installer> true|cdrom|netinst|netboot|businesscard|live|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:286 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:286 +#, no-wrap +msgid "B<--debian-installer-distribution> daily|I<CODENAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:288 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:288 +#, no-wrap +msgid "B<--debian-installer-preseedfile> I<FILE>|I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:290 +msgid "" +"sets the filename or URL for an optionally used and included preseeding file " +"for debian-installer." +msgstr "" + +#. type: IP +#: en/lh_config.1:290 +#, no-wrap +msgid "B<--debian-installer-gui> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:292 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:292 +#, no-wrap +msgid "-d|B<--distribution> I<CODENAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:294 +msgid "defines the distribution of the resulting live system." +msgstr "" + +#. type: IP +#: en/lh_config.1:294 +#, no-wrap +msgid "--B<dump>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:296 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:296 +#, no-wrap +msgid "-e|B<--encryption> false|aes128|aes192|aes256" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:298 +msgid "" +"defines if the root filesystem should be encrypted or not. By default, this " +"is false." +msgstr "" + +#. type: IP +#: en/lh_config.1:298 +#, no-wrap +msgid "B<--fdisk> fdisk|fdisk.dist" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:300 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:300 +#, no-wrap +msgid "B<--grub-splash> I<FILE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:302 +msgid "" +"defines the name of an optional to be included splash screen graphic for the " +"grub bootloader." +msgstr "" + +#. type: IP +#: en/lh_config.1:302 +#, no-wrap +msgid "B<--gzip-options> I<OPTION>|\"I<OPTIONS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:304 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:304 +#, no-wrap +msgid "B<--hooks> I<FILE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:306 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:306 +#, no-wrap +msgid "B<--hostname> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:308 +msgid "sets the hostname of the live system." +msgstr "" + +#. type: IP +#: en/lh_config.1:308 +#, no-wrap +msgid "B<--ignore-system-defaults>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:310 +msgid "" +"B<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." +msgstr "" + +#. type: IP +#: en/lh_config.1:310 +#, no-wrap +msgid "B<--includes> I<PATH>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:312 +msgid "" +"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/." +msgstr "" + +#. type: IP +#: en/lh_config.1:312 +#, no-wrap +msgid "B<--initramfs> auto|live-initramfs|casper" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:314 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:314 +#, no-wrap +msgid "B<--interactive> shell" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:316 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:316 +#, no-wrap +msgid "B<--iso-application> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:318 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:318 +#, no-wrap +msgid "B<--iso-preparer> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:320 +msgid "" +"sets the PREPARER field in the header of a resulting CD/DVD image. By " +"default this is set to \"live-helper I<VERSION>; http://packages.qa.debian." +"org/live-helper\", whereas VERSION is expanded to the version of live-helper " +"that was used to build the image." +msgstr "" + +#. type: IP +#: en/lh_config.1:320 +#, no-wrap +msgid "B<--iso-publisher> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:322 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:322 +#, no-wrap +msgid "B<--iso-volume> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:324 +msgid "" +"sets the VOLUME field in the header of a resulting CD/DVD and defaults to " +"'(I<MODE>) (I<DISTRIBUTION>) (I<DATE>)' 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 (I<VERSION>) (I<ARCHITECTURE>) " +"live' where VERSION becomes the numerical version of the release being built " +"and ARCHITECTURE becomes the name of the architecture." +msgstr "" + +#. type: IP +#: en/lh_config.1:324 +#, no-wrap +msgid "B<--jffs2-eraseblock> I<SIZE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:326 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:326 +#, no-wrap +msgid "B<--keyring-packages> I<PACKAGE|\"PACKAGES>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:328 +msgid "" +"sets the keyring package or additional keyring packages. By default this is " +"set to debian-archive-keyring." +msgstr "" + +#. type: IP +#: en/lh_config.1:328 +#, no-wrap +msgid "-l|B<--language> I<LANGUAGE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:330 +msgid "" +"sets the language of a live system by installing l10n related packages and " +"enables generation of the correct locales through automatically setting the " +"right boot parameters." +msgstr "" + +#. type: IP +#: en/lh_config.1:330 +#, no-wrap +msgid "-k|B<--linux-flavours> I<FLAVOUR>|\"I<FLAVOURS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:332 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:332 +#, no-wrap +msgid "B<--linux-packages> \"I<PACKAGES>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:334 +msgid "" +"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 I<STUB>-I<FLAVOUR> 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." +msgstr "" + +#. type: IP +#: en/lh_config.1:334 +#, no-wrap +msgid "B<--losetup> losetup|losetup.orig" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:336 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:336 +#, no-wrap +msgid "B<--memtest> memtest86+|memtest86|none" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:338 +msgid "" +"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+." +msgstr "" + +#. type: IP +#: en/lh_config.1:338 +#, no-wrap +msgid "-m|B<--mirror-bootstrap> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:340 +msgid "" +"sets the location of the debian package mirror that should be used to " +"bootstrap from." +msgstr "" + +#. type: IP +#: en/lh_config.1:340 +#, no-wrap +msgid "B<--mirror-binary> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:342 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:342 +#, no-wrap +msgid "B<--mirror-binary-security> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:344 +msgid "" +"sets the location of the debian security package mirror that should end up " +"configuered in the final image. By default, the same value that is used for " +"--mirror-chroot-security is used here unless specified different." +msgstr "" + +#. type: IP +#: en/lh_config.1:344 +#, no-wrap +msgid "B<--mirror-chroot> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:346 +msgid "" +"sets the location of the debian package mirror that will be used to fetch " +"the packages in order to build the live system. By default, this points to " +"http://ftp.us.debian.org/debian/ which may not be a good default if you live " +"outside the U.S." +msgstr "" + +#. type: IP +#: en/lh_config.1:346 +#, no-wrap +msgid "B<--mirror-chroot-security> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:348 +msgid "" +"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/." +msgstr "" + +#. type: IP +#: en/lh_config.1:348 +#, no-wrap +msgid "B<--mirror-debian-installer> I<URL>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:350 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:350 +#, no-wrap +msgid "B<--mode> debian|emdebian|ubuntu" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:352 +msgid "" +"defines a global mode to load project specific defaults. By default this is " +"set to debian." +msgstr "" + +#. type: IP +#: en/lh_config.1:352 +#, no-wrap +msgid "B<--net-root-filesystem> nfs|cfs" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:354 +msgid "" +"defines the filesystem that will be configured in the bootloader " +"configuration for your netboot image. This defaults to nfs." +msgstr "" + +#. type: IP +#: en/lh_config.1:354 +#, no-wrap +msgid "B<--net-root-mountoptions> I<OPTIONS>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:356 +msgid "" +"sets additional options for mounting the root filesystem in netboot images " +"and is by default empty." +msgstr "" + +#. type: IP +#: en/lh_config.1:356 +#, no-wrap +msgid "B<--net-root-path> I<PATH>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:358 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:358 +#, no-wrap +msgid "B<--net-root-server> I<IP>|I<HOSTNAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:360 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:360 +#, no-wrap +msgid "B<--net-cow-filesystem> nfs|cfs" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:362 +msgid "" +"defines the filesystem type for the copy-on-write layer and defaults to nfs." +msgstr "" + +#. type: IP +#: en/lh_config.1:362 +#, no-wrap +msgid "B<--net-cow-mountoptions> I<OPTIONS>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:364 +msgid "" +"sets additional options for mounting the copy-on-write layer in netboot " +"images and is by default empty." +msgstr "" + +#. type: IP +#: en/lh_config.1:364 +#, no-wrap +msgid "B<--net-cow-path> I<PATH>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:366 +msgid "" +"defines the path to client writable filesystem. Anywhere that " +"I<client_mac_address> is specified in the path live-initramfs will " +"substitute the MAC address of the client delimited with hyphens." +msgstr "" + +#. type: Plain text +#: en/lh_config.1:369 +msgid "Example:" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:371 +msgid "/export/hosts/client_mac_address" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:373 +msgid "/export/hosts/00-16-D3-33-92-E8" +msgstr "" + +#. type: IP +#: en/lh_config.1:373 +#, no-wrap +msgid "B<--net-cow-server> I<IP>|I<HOSTNAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:375 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:375 +#, no-wrap +msgid "B<--net-tarball> bzip2|gzip|tar|none" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:377 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:377 +#, no-wrap +msgid "-p|B<--packages-lists> I<LIST>|\"I<LISTS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:379 +msgid "" +"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)." +msgstr "" + +#. type: IP +#: en/lh_config.1:379 +#, no-wrap +msgid "B<--packages> I<PACKAGE>|\"I<PACKAGES>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:381 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:381 +#, no-wrap +msgid "B<-r, --repositories> I<REPOSITORY>|\"I<REPOSITORIES>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:383 +msgid "" +"enables one of available third-party repository configurations in /usr/share/" +"live-helper/repositories." +msgstr "" + +#. type: IP +#: en/lh_config.1:383 +#, no-wrap +msgid "B<--root-command> sudo" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:385 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:385 +#, no-wrap +msgid "B<--use-fakeroot> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:387 +msgid "" +"controls if live-helper should utilize fakeroot and fakechroot to try and " +"avoid requiring root privillages where possible. By default, this option is " +"false." +msgstr "" + +#. type: IP +#: en/lh_config.1:387 +#, no-wrap +msgid "B<--archive-areas> I<ARCHIVE_AREA>|\"I<ARCHIVE_AREAS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:389 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:389 +#, no-wrap +msgid "B<--security> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:391 +msgid "" +"defines if the security repositories specified in the security mirror " +"options should be used or not." +msgstr "" + +#. type: IP +#: en/lh_config.1:391 +#, no-wrap +msgid "B<--source> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:393 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:393 +#, no-wrap +msgid "-s|B<--source-images> iso|net|tar|usb-hdd" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:395 +msgid "defines the image type for the source image. Default is tar." +msgstr "" + +#. type: IP +#: en/lh_config.1:395 +#, no-wrap +msgid "B<--symlinks> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:397 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:397 +#, no-wrap +msgid "B<--syslinux-splash> I<FILE>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:399 +msgid "" +"defines the file of the syslinux splash graphic that should be used instead " +"of the default one." +msgstr "" + +#. type: IP +#: en/lh_config.1:399 +#, no-wrap +msgid "B<--syslinux-timeout> I<SECONDS>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:401 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:401 +#, no-wrap +msgid "B<--syslinux-menu> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:403 +msgid "" +"defines if syslinux should be make use of the vgamenu capabilities or not." +msgstr "" + +#. type: IP +#: en/lh_config.1:403 +#, no-wrap +msgid "B<--sysvinit> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:405 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:405 +#, no-wrap +msgid "B<--tasksel> aptitude|tasksel" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:407 +msgid "" +"selects which program is used to install tasks. By default, this is set to " +"tasksel." +msgstr "" + +#. type: IP +#: en/lh_config.1:407 +#, no-wrap +msgid "B<--tasks> I<TASK>|\"I<TASKS>\"" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:409 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:409 +#, no-wrap +msgid "B<--templates> I<PATH>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:411 +msgid "" +"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/." +msgstr "" + +#. type: IP +#: en/lh_config.1:411 +#, no-wrap +msgid "B<--virtual-root-filesystem> ext3" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:413 +msgid "" +"defines what filesystem to format the root filesystem when building virtual-" +"hdd images." +msgstr "" + +#. type: IP +#: en/lh_config.1:413 +#, no-wrap +msgid "B<--virtual-root-size> MB" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:415 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:415 +#, no-wrap +msgid "B<--exposed-root> true|false" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:417 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:417 +#, no-wrap +msgid "B<--username> I<NAME>" +msgstr "" + +#. type: Plain text +#: en/lh_config.1:419 +msgid "sets the name of the account of the default user in the live system." +msgstr "" + +#. type: IP +#: en/lh_config.1:419 +#, no-wrap +msgid "B<--win32-loader true|false>" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:422 +msgid "defines if win32-loader should be included in the binary image or not." +msgstr "" + +#. type: SH +#: en/lh_config.1:423 +#, no-wrap +msgid "ENVIRONMENT" +msgstr "" + +#. FIXME +#. FIXME +#. type: Plain text +#: en/lh_config.1:427 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/lh_config.1:431 +#, no-wrap +msgid "B</etc/default/live-helper>" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_config.1:434 +msgid "" +"An optional, global configuration file for B<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 B<--ignore-system-defaults> option." +msgstr "" diff --git a/manpages/pot/lh_local.1.pot b/manpages/pot/lh_local.1.pot new file mode 100644 index 000000000..55757eb5b --- /dev/null +++ b/manpages/pot/lh_local.1.pot @@ -0,0 +1,716 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_local.1:5 +msgid "B<lh_local> - wrapper for local live-helper programs" +msgstr "" + +#. type: Plain text +#: en/lh_local.1:8 +msgid "B<lh local> [I<live-helper\\ options>]" +msgstr "" + +#. type: Plain text +#: en/lh_local.1:11 +msgid "" +"B<lh local> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_local.1:16 +msgid "" +"B<lh local> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(7) for a complete list of all generic live-" +"helper options." +msgstr "" diff --git a/manpages/pot/lh_source.1.pot b/manpages/pot/lh_source.1.pot new file mode 100644 index 000000000..63c7de104 --- /dev/null +++ b/manpages/pot/lh_source.1.pot @@ -0,0 +1,723 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_source.1:5 +msgid "B<lh source> - Complete the source stage" +msgstr "" + +#. type: Plain text +#: en/lh_source.1:8 +msgid "B<lh source> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source.1:11 +msgid "" +"B<lh source> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source.1:13 +msgid "" +"B<lh source> calls all necessary live-helper programs in the correct order " +"to complete the source stage." +msgstr "" + +#. type: Plain text +#: en/lh_source.1:16 +msgid "" +"B<lh source> has no specific options but understands all generic live-helper " +"options. See I<live-helper>(7) for a complete list of all generic live-" +"helper options." +msgstr "" diff --git a/manpages/pot/lh_source_checksums.1.pot b/manpages/pot/lh_source_checksums.1.pot new file mode 100644 index 000000000..4b96ceb70 --- /dev/null +++ b/manpages/pot/lh_source_checksums.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_checksums.1:5 +msgid "B<lh sources_checksums> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_checksums.1:8 +msgid "B<lh sources_checksums> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_checksums.1:11 +msgid "" +"B<lh sources_checksums> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_checksums.1:16 +msgid "" +"B<lh sources_checksums> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_source_debian-live.1.pot b/manpages/pot/lh_source_debian-live.1.pot new file mode 100644 index 000000000..1f07ce5ad --- /dev/null +++ b/manpages/pot/lh_source_debian-live.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian-live.1:5 +msgid "B<lh sources_debian-live> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian-live.1:8 +msgid "B<lh sources_debian-live> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian-live.1:11 +msgid "" +"B<lh sources_debian-live> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_debian-live.1:16 +msgid "" +"B<lh sources_debian-live> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_source_debian.1.pot b/manpages/pot/lh_source_debian.1.pot new file mode 100644 index 000000000..ef43619e1 --- /dev/null +++ b/manpages/pot/lh_source_debian.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian.1:5 +msgid "B<lh sources_debian> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian.1:8 +msgid "B<lh sources_debian> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_debian.1:11 +msgid "" +"B<lh sources_debian> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_debian.1:16 +msgid "" +"B<lh sources_debian> has no specific options but understands all generic " +"live-helper options. See I<live-helper>(7) for a complete list of all " +"generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_source_disk.1.pot b/manpages/pot/lh_source_disk.1.pot new file mode 100644 index 000000000..c9ad005d4 --- /dev/null +++ b/manpages/pot/lh_source_disk.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_disk.1:5 +msgid "B<lh sources_disk> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_disk.1:8 +msgid "B<lh sources_disk> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_disk.1:11 +msgid "" +"B<lh sources_disk> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_disk.1:16 +msgid "" +"B<lh sources_disk> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_source_iso.1.pot b/manpages/pot/lh_source_iso.1.pot new file mode 100644 index 000000000..c230a1c18 --- /dev/null +++ b/manpages/pot/lh_source_iso.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_iso.1:5 +msgid "B<lh sources_iso> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_iso.1:8 +msgid "B<lh sources_iso> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_iso.1:11 +msgid "" +"B<lh sources_iso> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_iso.1:16 +msgid "" +"B<lh sources_iso> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_source_net.1.pot b/manpages/pot/lh_source_net.1.pot new file mode 100644 index 000000000..cab78cffe --- /dev/null +++ b/manpages/pot/lh_source_net.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_net.1:5 +msgid "B<lh sources_net> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_net.1:8 +msgid "B<lh sources_net> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_net.1:11 +msgid "" +"B<lh sources_net> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_net.1:16 +msgid "" +"B<lh sources_net> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_source_tar.1.pot b/manpages/pot/lh_source_tar.1.pot new file mode 100644 index 000000000..bd158e6e8 --- /dev/null +++ b/manpages/pot/lh_source_tar.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_tar.1:5 +msgid "B<lh sources_tar> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_tar.1:8 +msgid "B<lh sources_tar> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_tar.1:11 +msgid "" +"B<lh sources_tar> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_tar.1:16 +msgid "" +"B<lh sources_tar> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_source_usb.1.pot b/manpages/pot/lh_source_usb.1.pot new file mode 100644 index 000000000..7babefa4a --- /dev/null +++ b/manpages/pot/lh_source_usb.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_usb.1:5 +msgid "B<lh sources_usb> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_usb.1:8 +msgid "B<lh sources_usb> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_usb.1:11 +msgid "" +"B<lh sources_usb> is a low-level command (plumbing) of I<live-helper>(7), " +"the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_usb.1:16 +msgid "" +"B<lh sources_usb> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/lh_source_virtual-hdd.1.pot b/manpages/pot/lh_source_virtual-hdd.1.pot new file mode 100644 index 000000000..4d7f7bedf --- /dev/null +++ b/manpages/pot/lh_source_virtual-hdd.1.pot @@ -0,0 +1,746 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/lh_source_virtual-hdd.1:5 +msgid "B<lh sources_virtual-hdd> - Complete the sources stage" +msgstr "" + +#. type: Plain text +#: en/lh_source_virtual-hdd.1:8 +msgid "B<lh sources_virtual-hdd> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_source_virtual-hdd.1:11 +msgid "" +"B<lh sources_virtual-hdd> is a low-level command (plumbing) of I<live-helper>" +"(7), the Debian Live tool suite." +msgstr "" + +#. type: Plain text +#: en/lh_source_virtual-hdd.1:16 +msgid "" +"B<lh sources_virtual-hdd> has no specific options but understands all " +"generic live-helper options. See I<live-helper>(7) for a complete list of " +"all generic live-helper options." +msgstr "" diff --git a/manpages/pot/lh_testroot.1.pot b/manpages/pot/lh_testroot.1.pot new file mode 100644 index 000000000..46f249ebf --- /dev/null +++ b/manpages/pot/lh_testroot.1.pot @@ -0,0 +1,733 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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<none>" +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<live-helper>(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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> for " +"the Debian project." +msgstr "" + +#. type: Plain text +#: en/lh_testroot.1:5 +msgid "B<lh testroot> - Ensure that a system is built as root" +msgstr "" + +#. type: Plain text +#: en/lh_testroot.1:8 +msgid "B<lh testroot> [I<live-helper options>]" +msgstr "" + +#. type: Plain text +#: en/lh_testroot.1:11 +msgid "" +"B<lh testroot> is a high-level command (porcelain) of I<live-helper>(7), the " +"Debian Live tool suite." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_testroot.1:14 +msgid "" +"B<lh testroot> 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." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/lh_testroot.1:17 +msgid "" +"Note: Support for using I<fakeroot>(1) and I<sudo>(8) internally in live-" +"helper itself is still experimental, however, calling a helper yourself with " +"sudo is safe." +msgstr "" + +#. type: Plain text +#: en/lh_testroot.1:20 +msgid "" +"B<lh testroot> has no specific options but understands all generic live-" +"helper options. See I<live-helper>(7) for a complete list of all generic " +"live-helper options." +msgstr "" diff --git a/manpages/pot/live-helper.7.pot b/manpages/pot/live-helper.7.pot new file mode 100644 index 000000000..8e0941da6 --- /dev/null +++ b/manpages/pot/live-helper.7.pot @@ -0,0 +1,1859 @@ +# SOME DESCRIPTIVE TITLE +# Copyright (C) YEAR Free Software Foundation, Inc. +# This file is distributed under the same license as the live-helper package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: live-helper VERSION\n" +"POT-Creation-Date: 2010-05-08 18:42+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"Language-Team: LANGUAGE <LL@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: ENCODING" + +#. type: TH +#: en/lh.1:1 en/lh_binary.1:1 en/lh_binary_checksums.1:1 +#: en/lh_binary_chroot.1:1 en/lh_binary_debian-installer.1:1 +#: en/lh_binary_disk.1:1 en/lh_binary_encryption.1:1 en/lh_binary_grub.1:1 +#: en/lh_binary_grub2.1:1 en/lh_binary_includes.1:1 en/lh_binary_iso.1:1 +#: en/lh_binary_linux-image.1:1 en/lh_binary_local-hooks.1:1 +#: en/lh_binary_local-includes.1:1 en/lh_binary_local-packageslists.1:1 +#: en/lh_binary_manifest.1:1 en/lh_binary_memtest.1:1 en/lh_binary_net.1:1 +#: en/lh_binary_rootfs.1:1 en/lh_binary_silo.1:1 en/lh_binary_syslinux.1:1 +#: en/lh_binary_tar.1:1 en/lh_binary_usb.1:1 en/lh_binary_virtual-hdd.1:1 +#: en/lh_binary_win32-loader.1:1 en/lh_binary_yaboot.1:1 en/lh_bootstrap.1:1 +#: en/lh_bootstrap_cache.1:1 en/lh_bootstrap_cdebootstrap.1:1 +#: en/lh_bootstrap_copy.1:1 en/lh_bootstrap_debootstrap.1:1 en/lh_build.1:1 +#: en/lh_chroot.1:1 en/lh_chroot_apt.1:1 en/lh_chroot_cache.1:1 +#: en/lh_chroot_debianchroot.1:1 en/lh_chroot_devpts.1:1 en/lh_chroot_dpkg.1:1 +#: en/lh_chroot_hacks.1:1 en/lh_chroot_hooks.1:1 en/lh_chroot_hostname.1:1 +#: en/lh_chroot_hosts.1:1 en/lh_chroot_install-packages.1:1 +#: en/lh_chroot_interactive.1:1 en/lh_chroot_linux-image.1:1 +#: en/lh_chroot_local-hooks.1:1 en/lh_chroot_local-includes.1:1 +#: en/lh_chroot_localization.1:1 en/lh_chroot_local-packages.1:1 +#: en/lh_chroot_local-packageslists.1:1 en/lh_chroot_local-patches.1:1 +#: en/lh_chroot_local-preseed.1:1 en/lh_chroot_packages.1:1 +#: en/lh_chroot_packageslists.1:1 en/lh_chroot_preseed.1:1 +#: en/lh_chroot_proc.1:1 en/lh_chroot_resolv.1:1 en/lh_chroot_selinuxfs.1:1 +#: en/lh_chroot_sources.1:1 en/lh_chroot_symlinks.1:1 en/lh_chroot_sysfs.1:1 +#: en/lh_chroot_sysvinit.1:1 en/lh_chroot_sysv-rc.1:1 en/lh_chroot_tasks.1:1 +#: en/lh_chroot_upstart.1:1 en/lh_clean.1:1 en/lh_config.1:1 en/lh_local.1:1 +#: en/lh_source.1:1 en/lh_source_checksums.1:1 en/lh_source_debian.1:1 +#: en/lh_source_debian-live.1:1 en/lh_source_disk.1:1 en/lh_source_iso.1:1 +#: en/lh_source_net.1:1 en/lh_source_tar.1:1 en/lh_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: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 E<lt>I<http://live.debian.net/>E<gt> and in the manual at " +"E<lt>I<http://live.debian.net/manual/>E<gt>." +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 E<lt>I<http://bugs.debian.org/>E<gt> or " +"by writing a mail to the Debian Live mailing list at E<lt>I<debian-" +"live@lists.debian.org>E<gt>." +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 E<lt>I<daniel@debian.org>E<gt> 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<n/a>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:5 +msgid "B<live-helper> - the Debian Live tool suite" +msgstr "" + +#. FIXME +#. FIXME +#. type: Plain text +#: en/live-helper.7:10 +msgid "" +"B<lh >I<COMMAND> [B<-h|--help>] [B<-u|--usage>] [B<-v|--version>] [B<--" +"breakpoints>] [B<--conffile>] [B<--debug>] [B<--force>] [B<--quiet>] [B<--" +"verbose>]" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:14 +msgid "" +"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." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:16 +msgid "The I<COMMAND> is a name of a live-helper command (see below)." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:19 +msgid "" +"More documentation about how to use live-helper is available in the " +"individual manpages for each helper and in the manual at E<lt>I<http://live." +"debian.net/manual/>E<gt>." +msgstr "" + +#. FIXME +#. type: SS +#: en/live-helper.7:22 +#, no-wrap +msgid "Shared live-helper options" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:24 +msgid "" +"The following command line options are supported by all live-helper programs." +msgstr "" + +#. type: IP +#: en/live-helper.7:24 +#, no-wrap +msgid "B<-h, --help>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:26 +msgid "display help and exit." +msgstr "" + +#. type: IP +#: en/live-helper.7:26 +#, no-wrap +msgid "B<-u, --usage>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:28 +msgid "show usage and exit." +msgstr "" + +#. type: IP +#: en/live-helper.7:28 +#, no-wrap +msgid "B<-v, --version>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:30 +msgid "output version information and exit." +msgstr "" + +#. type: SS +#: en/live-helper.7:30 +#, no-wrap +msgid "Common live-helper options" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:32 +msgid "" +"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." +msgstr "" + +#. type: IP +#: en/live-helper.7:32 +#, no-wrap +msgid "B<--breakpoints>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:34 +msgid "run with breakpoints." +msgstr "" + +#. type: IP +#: en/live-helper.7:34 +#, no-wrap +msgid "B<--conffile>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:36 +msgid "use custom configuration file." +msgstr "" + +#. type: IP +#: en/live-helper.7:36 +#, no-wrap +msgid "B<--debug>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:38 +msgid "show debug information." +msgstr "" + +#. type: IP +#: en/live-helper.7:38 +#, no-wrap +msgid "B<--force>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:40 +msgid "force helper execution, even if stage file exists." +msgstr "" + +#. type: IP +#: en/live-helper.7:40 +#, no-wrap +msgid "B<--quiet>" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:42 +msgid "be quiet." +msgstr "" + +#. type: IP +#: en/live-helper.7:42 +#, no-wrap +msgid "B<--verbose>" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:45 +msgid "be verbose." +msgstr "" + +#. type: SH +#: en/live-helper.7:46 +#, no-wrap +msgid "LIVE-HELPER COMMANDS" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:49 +msgid "" +"We divide live-helper into high level (\"porcelain\") commands and low level " +"(\"plumbing\") commands." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:53 +msgid "" +"Here is the complete list of all available live-helper commands. See their " +"man pages for additional documentation." +msgstr "" + +#. type: SH +#: en/live-helper.7:54 +#, no-wrap +msgid "HIGH-LEVEL COMMANDS (PORCELAIN)" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:57 +msgid "" +"We separate the porcelain commands into the main commands and some ancillary " +"user utilities." +msgstr "" + +#. type: SS +#: en/live-helper.7:57 +#, no-wrap +msgid "Main porcelain commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:58 +#, no-wrap +msgid "B<lh_config>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:60 +msgid "create configuration for live-helper" +msgstr "" + +#. type: IP +#: en/live-helper.7:60 +#, no-wrap +msgid "B<lh_bootstrap>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:62 +msgid "create the first stage by bootstrapping a basic debian system" +msgstr "" + +#. type: IP +#: en/live-helper.7:62 +#, no-wrap +msgid "B<lh_chroot>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:64 +msgid "create the second stage by customizing the chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:64 +#, no-wrap +msgid "B<lh_binary>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:66 +msgid "create the third stage by generating a binary image" +msgstr "" + +#. type: IP +#: en/live-helper.7:66 +#, no-wrap +msgid "B<lh_source>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:68 +msgid "create the optional fourth stage by generating a source image" +msgstr "" + +#. type: IP +#: en/live-helper.7:68 +#, no-wrap +msgid "B<lh_clean>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:70 +msgid "clean up system build directories" +msgstr "" + +#. type: SS +#: en/live-helper.7:70 +#, no-wrap +msgid "Ancillary Commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:71 +#, no-wrap +msgid "B<lh>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:73 +msgid "generic live-helper wrapper" +msgstr "" + +#. type: IP +#: en/live-helper.7:73 +#, no-wrap +msgid "B<lh_build>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:75 +msgid "alias for all stages" +msgstr "" + +#. type: IP +#: en/live-helper.7:75 +#, no-wrap +msgid "B<lh_local>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:77 +msgid "helper for using a local live-helper" +msgstr "" + +#. type: IP +#: en/live-helper.7:77 +#, no-wrap +msgid "B<lh_testroot>(1)" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:80 +msgid "ensure that a system is built as root" +msgstr "" + +#. type: SH +#: en/live-helper.7:81 +#, no-wrap +msgid "LOW-LEVEL COMMANDS (PLUMBING)" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:84 +msgid "" +"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." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:86 +msgid "" +"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." +msgstr "" + +#. type: SS +#: en/live-helper.7:86 +#, no-wrap +msgid "Bootstrap commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:87 +#, no-wrap +msgid "B<lh_bootstrap_cache>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:89 +msgid "cache bootstrap stage" +msgstr "" + +#. type: IP +#: en/live-helper.7:89 +#, no-wrap +msgid "B<lh_bootstrap_cdebootstrap>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:91 +msgid "bootstrap a Debian system with cdebootstrap(1)" +msgstr "" + +#. type: IP +#: en/live-helper.7:91 +#, no-wrap +msgid "B<lh_bootstrap_copy>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:93 +msgid "bootstrap by copying the host system" +msgstr "" + +#. type: IP +#: en/live-helper.7:93 +#, no-wrap +msgid "B<lh_bootstrap_debootstrap>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:95 +msgid "bootstrap a Debian system with debootstrap(8)" +msgstr "" + +#. type: SS +#: en/live-helper.7:95 +#, no-wrap +msgid "Chroot commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:96 +#, no-wrap +msgid "B<lh_chroot_apt>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:98 +msgid "manage /etc/apt/apt.conf" +msgstr "" + +#. type: IP +#: en/live-helper.7:98 +#, no-wrap +msgid "B<lh_chroot_cache>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:100 +msgid "cache chroot stage" +msgstr "" + +#. type: IP +#: en/live-helper.7:100 +#, no-wrap +msgid "B<lh_chroot_debianchroot>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:102 +msgid "manage /etc/debian_chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:102 +#, no-wrap +msgid "B<lh_chroot_devpts>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:104 +msgid "mount /dev/pts" +msgstr "" + +#. type: IP +#: en/live-helper.7:104 +#, no-wrap +msgid "B<lh_chroot_dpkg>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:106 +msgid "manage /sbin/dpkg" +msgstr "" + +#. type: IP +#: en/live-helper.7:106 +#, no-wrap +msgid "B<lh_chroot_hacks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:108 +msgid "execute hacks in chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:108 +#, no-wrap +msgid "B<lh_chroot_hooks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:110 +msgid "execute hooks in chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:110 +#, no-wrap +msgid "B<lh_chroot_hostname>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:112 +msgid "manage /bin/hostname" +msgstr "" + +#. type: IP +#: en/live-helper.7:112 +#, no-wrap +msgid "B<lh_chroot_hosts>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:114 +msgid "manage /etc/hosts" +msgstr "" + +#. type: IP +#: en/live-helper.7:114 +#, no-wrap +msgid "B<lh_chroot_install-packages>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:116 +msgid "install queued packages into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:116 +#, no-wrap +msgid "B<lh_chroot_interactive>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:118 +msgid "make build interactive" +msgstr "" + +#. type: IP +#: en/live-helper.7:118 +#, no-wrap +msgid "B<lh_chroot_linux-image>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:120 +msgid "manage /etc/kernel-img.conf" +msgstr "" + +#. type: IP +#: en/live-helper.7:120 +#, no-wrap +msgid "B<lh_chroot_local-hooks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:122 +msgid "execute local hooks in chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:122 +#, no-wrap +msgid "B<lh_chroot_local-includes>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:124 +msgid "copy local files into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:124 +#, no-wrap +msgid "B<lh_chroot_localization>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:126 +msgid "install localization packages into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:126 +#, no-wrap +msgid "B<lh_chroot_local-packages>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:128 +msgid "queue install of local packages into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:128 +#, no-wrap +msgid "B<lh_chroot_local-patches>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:130 +msgid "apply local patches against chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:130 +#, no-wrap +msgid "B<lh_chroot_local-preseed>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:132 +msgid "use debconf local preseeding file" +msgstr "" + +#. type: IP +#: en/live-helper.7:132 +#, no-wrap +msgid "B<lh_chroot_packages>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:134 +msgid "queue install of packages into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:134 +#, no-wrap +msgid "B<lh_chroot_packageslists>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:136 +msgid "queue install of packages lists into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:136 +#, no-wrap +msgid "B<lh_chroot_preseed>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:138 +msgid "use debconf preseeding file" +msgstr "" + +#. type: IP +#: en/live-helper.7:138 +#, no-wrap +msgid "B<lh_chroot_proc>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:140 +msgid "mount /proc" +msgstr "" + +#. type: IP +#: en/live-helper.7:140 +#, no-wrap +msgid "B<lh_chroot_resolv>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:142 +msgid "manage /etc/resolv.conf" +msgstr "" + +#. type: IP +#: en/live-helper.7:142 +#, no-wrap +msgid "B<lh_chroot_selinuxfs>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:144 +msgid "mount /selinux" +msgstr "" + +#. type: IP +#: en/live-helper.7:144 +#, no-wrap +msgid "B<lh_chroot_sources>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:146 +msgid "manage /etc/apt/sources.list" +msgstr "" + +#. type: IP +#: en/live-helper.7:146 +#, no-wrap +msgid "B<lh_chroot_symlinks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:148 +msgid "convert symlinks" +msgstr "" + +#. type: IP +#: en/live-helper.7:148 +#, no-wrap +msgid "B<lh_chroot_sysfs>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:150 +msgid "mount /sys" +msgstr "" + +#. type: IP +#: en/live-helper.7:150 +#, no-wrap +msgid "B<lh_chroot_sysvinit>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:152 +msgid "configure sysvinit" +msgstr "" + +#. type: IP +#: en/live-helper.7:152 +#, no-wrap +msgid "B<lh_chroot_sysv-rc>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:154 +msgid "manage /usr/sbin/policy-rc.d" +msgstr "" + +#. type: IP +#: en/live-helper.7:154 +#, no-wrap +msgid "B<lh_chroot_tasks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:156 +msgid "install tasks into chroot" +msgstr "" + +#. type: SS +#: en/live-helper.7:156 +#, no-wrap +msgid "Binary commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:157 +#, no-wrap +msgid "B<lh_binary_chroot>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:159 +msgid "copy chroot into chroot" +msgstr "" + +#. type: IP +#: en/live-helper.7:159 +#, no-wrap +msgid "B<lh_binary_debian-installer>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:161 +msgid "install debian-installer into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:161 +#, no-wrap +msgid "B<lh_binary_disk>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:163 +msgid "install disk information into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:163 +#, no-wrap +msgid "B<lh_binary_encryption>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:165 +msgid "encrypts rootfs" +msgstr "" + +#. type: IP +#: en/live-helper.7:165 +#, no-wrap +msgid "B<lh_binary_grub>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:167 +msgid "installs grub into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:167 +#, no-wrap +msgid "B<lh_binary_grub2>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:169 +msgid "installs grub2 into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:169 +#, no-wrap +msgid "B<lh_binary_includes>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:171 en/live-helper.7:179 +msgid "copy files into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:171 +#, no-wrap +msgid "B<lh_binary_iso>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:173 +msgid "build iso binary image" +msgstr "" + +#. type: IP +#: en/live-helper.7:173 +#, no-wrap +msgid "B<lh_binary_linux-image>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:175 +msgid "install linux-image into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:175 +#, no-wrap +msgid "B<lh_binary_local-hooks>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:177 +msgid "execute local hooks in binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:177 +#, no-wrap +msgid "B<lh_binary_local-includes>(1)" +msgstr "" + +#. type: IP +#: en/live-helper.7:179 +#, no-wrap +msgid "B<lh_binary_local-packageslists>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:181 +msgid "install local packages lists into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:181 +#, no-wrap +msgid "B<lh_binary_manifest>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:183 +msgid "create manifest" +msgstr "" + +#. type: IP +#: en/live-helper.7:183 +#, no-wrap +msgid "B<lh_binary_checksums>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:185 +msgid "create binary checksums (md5, sha1, and/or sha256)" +msgstr "" + +#. type: IP +#: en/live-helper.7:185 +#, no-wrap +msgid "B<lh_binary_memtest>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:187 +msgid "installs a memtest into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:187 +#, no-wrap +msgid "B<lh_binary_net>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:189 +msgid "build netboot binary image" +msgstr "" + +#. type: IP +#: en/live-helper.7:189 +#, no-wrap +msgid "B<lh_binary_rootfs>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:191 +msgid "build rootfs image" +msgstr "" + +#. type: IP +#: en/live-helper.7:191 +#, no-wrap +msgid "B<lh_binary_silo>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:193 +msgid "installs silo into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:193 +#, no-wrap +msgid "B<lh_binary_syslinux>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:195 +msgid "installs syslinux into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:195 +#, no-wrap +msgid "B<lh_binary_tar>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:197 +msgid "build harddisk binary image" +msgstr "" + +#. type: IP +#: en/live-helper.7:197 +#, no-wrap +msgid "B<lh_binary_usb>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:199 +msgid "build binary usb-hdd image" +msgstr "" + +#. type: IP +#: en/live-helper.7:199 +#, no-wrap +msgid "B<lh_binary_virtual-hdd>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:201 +msgid "build binary virtual-hdd image" +msgstr "" + +#. type: IP +#: en/live-helper.7:201 +#, no-wrap +msgid "B<lh_binary_win32-loader>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:203 +msgid "installs win32-loader into binary" +msgstr "" + +#. type: IP +#: en/live-helper.7:203 +#, no-wrap +msgid "B<lh_binary_yaboot>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:205 +msgid "installs yaboot into binary" +msgstr "" + +#. type: SS +#: en/live-helper.7:205 +#, no-wrap +msgid "Source commands" +msgstr "" + +#. type: IP +#: en/live-helper.7:206 +#, no-wrap +msgid "B<lh_source_debian>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:208 +msgid "download sources" +msgstr "" + +#. type: IP +#: en/live-helper.7:208 +#, no-wrap +msgid "B<lh_source_debian-live>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:210 +msgid "copy debian-live config into source" +msgstr "" + +#. type: IP +#: en/live-helper.7:210 +#, no-wrap +msgid "B<lh_source_disk>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:212 +msgid "install disk information into source" +msgstr "" + +#. type: IP +#: en/live-helper.7:212 +#, no-wrap +msgid "B<lh_source_iso>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:214 +msgid "build iso source image" +msgstr "" + +#. type: IP +#: en/live-helper.7:214 +#, no-wrap +msgid "B<lh_source_checksums>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:216 +msgid "create source checksums (md5, sha1, and/or sha256)" +msgstr "" + +#. type: IP +#: en/live-helper.7:216 +#, no-wrap +msgid "B<lh_source_net>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:218 +msgid "build source net image" +msgstr "" + +#. type: IP +#: en/live-helper.7:218 +#, no-wrap +msgid "B<lh_source_tar>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:220 +msgid "build source tarball" +msgstr "" + +#. type: IP +#: en/live-helper.7:220 +#, no-wrap +msgid "B<lh_source_usb>(1)" +msgstr "" + +#. type: Plain text +#: en/live-helper.7:222 +msgid "build source usb-hdd image" +msgstr "" + +#. type: IP +#: en/live-helper.7:222 +#, no-wrap +msgid "B<lh_source_virtual-hdd>(1)" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:225 +msgid "build source virtual-hdd image" +msgstr "" + +#. type: SH +#: en/live-helper.7:226 +#, no-wrap +msgid "CONFIG FILES" +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:229 +msgid "" +"Many live-helper commands make use of files in the I<config/> directory to " +"control what they do. Besides the common I<config/common>, 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)." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:231 +msgid "" +"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." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:233 +msgid "" +"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." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:235 +msgid "" +"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." +msgstr "" + +#. FIXME +#. type: Plain text +#: en/live-helper.7:238 +msgid "" +"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." +msgstr "" + +#. type: Plain text +#: en/live-helper.7:246 +msgid "I<live-initramfs>(7)" +msgstr "" |